GET
Fetch all Queue
/v1/api/queues/
Description: Returns all queues for the authenticated user. Each queue represents a trace job created via API or the app. While a queue is pending, the serializer hides rows_uploaded and credits_deducted for API queues. When complete, download_url is populated with a public CSV link.
Headers
Authorization=Bearer <YOUR_TOKEN>
Example Request
curl -X GET 'https://tracerfy.com/v1/api/queues/' -H 'Authorization: Bearer '
Example Response 200
[
{
"id": 123,
"created_at": "2025-01-01T12:00:00Z",
"pending": false,
"download_url": "https://tracerfy.nyc3.cdn.digitaloceanspaces.com/tracerfy/9a584124-77c2-4612-b8e9-f9efe6fbdc3d.csv",
"rows_uploaded": 2500,
"credits_deducted": 225,
"queue_type": "api"
}
]