Skip to main content
GET
/
oracle
/
jobs
List Oracle research jobs
curl --request GET \
  --url https://apigcp.trynia.ai/v2/oracle/jobs \
  --header 'Authorization: Bearer <token>'
{
  "jobs": [
    {
      "job_id": "<string>",
      "session_id": "<string>",
      "query": "<string>",
      "status": "queued",
      "created_at": "2023-11-07T05:31:56Z",
      "updated_at": "2023-11-07T05:31:56Z",
      "iterations": 123,
      "duration_ms": 123
    }
  ],
  "total": 123,
  "has_more": true
}

Authorizations

Authorization
string
header
required

API key must be provided in the Authorization header

Query Parameters

status
enum<string>

Filter jobs by status

Available options:
queued,
running,
completed,
failed,
cancelled
limit
integer
default:20

Number of jobs to return

Required range: 1 <= x <= 100
skip
integer
default:0

Number of jobs to skip (for pagination)

Required range: x >= 0

Response

Jobs list retrieved successfully

jobs
object[]
total
integer
has_more
boolean