---
title: "Get all jobs created by user"
method: GET
path: "/v1/auto-yara/jobs"
tags: ["Auto Yara"]
---

# Get all jobs created by user

`GET /v1/auto-yara/jobs`

List all Auto YARA jobs with status and coverage data, excluding rule text.

## Response `200`

Successful Response

- GetYaraJobsResponse — Paginated list of Auto YARA jobs.
  - `jobs` YaraJobListItem[] — A list of YARA jobs.
    - `coverage` PatternCoverage — The coverage information for the job, indicating which file hashes are covered by identified patterns. If no coverage data is available, this will be omitted.
      - `covered_hashes` string[], required — SHA-256 hashes of files that are covered by the identified patterns.
      - `uncovered_hashes` string[], required — SHA-256 hashes of files that do not share a common pattern with any other submitted file.
    - `created` string, date-time — The timestamp when the YARA job was created.
    - `job_id` string, required — A unique identifier for the YARA job.
    - `name` string, required — The name of the YARA job.
    - `status` string — The current status of the YARA job (e.g., "CREATED", "RUNNING", "FINISHED", "FAILED").

## Other responses

- `400` — Bad Request
- `401` — Unauthorized
- `403` — Forbidden
- `404` — Page not found

---

[API](https://skmtc.net/recordedfuture/apis/alert-api.md) · [All operations](https://skmtc.net/recordedfuture/apis/alert-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/recordedfuture/alert-api/revisions/c8c2f68d8b60/schema)
