Skip to main content
GET
/
api
/
v1
/
jobs
List current user's jobs
curl --request GET \
  --url https://suprkeywords.com/app/api/v1/jobs \
  --cookie __session=
{
  "jobs": [
    {
      "id": "<string>",
      "status": "<string>",
      "primaryDomain": "<string>",
      "competitorDomains": [
        "<string>"
      ],
      "languageCode": "<string>",
      "locationCode": 123,
      "createdAt": "2023-11-07T05:31:56Z",
      "startedAt": "2023-11-07T05:31:56Z",
      "completedAt": "2023-11-07T05:31:56Z",
      "progress": {},
      "errorMessage": "<string>"
    }
  ],
  "total": 123,
  "limit": 123,
  "offset": 123
}

Authorizations

__session
string
cookie
required

Clerk session cookie. Dashboard requests are authenticated via Clerk; unauthenticated requests return 401 for protected routes. Demo job access is allowed for GET job and sub-resources when applicable.

Query Parameters

limit
integer
default:50

Max jobs to return

Required range: x <= 100
offset
integer
default:0

Pagination offset

status
enum<string>

Filter by job status

Available options:
queued,
running,
completed,
failed

Response

List of jobs and total count

jobs
object[]
total
integer
limit
integer
offset
integer