List current user's jobs
curl --request GET \
--url https://www.suprkeywords.com/api/v1/jobs \
--header 'Authorization: Bearer <token>'{
"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
}Jobs
List current user's jobs
List the authenticated user’s jobs with optional pagination and status filter. Requires authentication. Returns 401 when not authenticated.
GET
/
api
/
v1
/
jobs
List current user's jobs
curl --request GET \
--url https://www.suprkeywords.com/api/v1/jobs \
--header 'Authorization: Bearer <token>'{
"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
}Documentation Index
Fetch the complete documentation index at: https://docs.suprkeywords.com/llms.txt
Use this file to discover all available pages before exploring further.
Authorizations
bearerAuthSessionAuth
API key for programmatic access. Create keys in Settings (Agency plan). Send as Authorization: Bearer or X-API-KEY: . Unauthenticated requests return 401.
Query Parameters
Max jobs to return
Required range:
x <= 100Pagination offset
Filter by job status
Available options:
queued, running, completed, failed ⌘I