Skip to content

Get Job Status

GET
/api/v1/jobs/{job_id}
curl --request GET \
--url https://api.qeychain.xyz/api/v1/jobs/example

Get the status of an async job.

Response includes:

  • status: pending, processing, completed, or failed
  • progress: Progress percentage (0-100) if available
  • result_url: Download URL when completed
  • error_message: Error details if failed

Poll this endpoint after creating a job via POST /wallets/{address}/tax-reports/generate

job_id
required
Job Id
string

Successful Response

Media typeapplication/json
Response Get Job Status Api V1 Jobs Job Id Get
object
key
additional properties
any
Examplegenerated
{}

Validation Error

Media typeapplication/json
HTTPValidationError
object
detail
Detail
Array<object>
ValidationError
object
loc
required
Location
Array
msg
required
Message
string
type
required
Error Type
string
Examplegenerated
{
"detail": [
{
"loc": [
"example"
],
"msg": "example",
"type": "example"
}
]
}