GET
Fetch all Queue
/v1/api/queues/
Description: Returns the authenticated user's queues as a JSON array, ordered by most recent first. Each queue represents a trace job created via API or the app. While a queue is pending,
Up to 100 queues per page. Pass
rows_uploaded and credits_deducted are hidden; when complete, download_url is populated with a CSV link.Up to 100 queues per page. Pass
?page=N to walk back through history. Pagination metadata is in the response headers β X-Total-Count for the total, and Link for navigation:Headers
Authorization=Bearer <YOUR_TOKEN>
Parameters
Name
In
Type
Required
Description
pagequery
integerNo
Page number to return. Default: 1. 100 queues per page.
Example Request
# Default β page 1, latest 100 queues
curl -i -X GET 'https://tracerfy.com/v1/api/queues/' -H 'Authorization: Bearer '
# Walk back through history
curl -i -X GET 'https://tracerfy.com/v1/api/queues/?page=2' -H 'Authorization: Bearer '
Example Response 200
[
{
"id": 124,
"created_at": "2025-01-02T09:30:00Z",
"pending": true,
"download_url": null,
"rows_uploaded": 1800,
"credits_deducted": 0,
"queue_type": "api",
"trace_type": "normal",
"credits_per_lead": 1
},
{
"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": 2500,
"queue_type": "api",
"trace_type": "normal",
"credits_per_lead": 1
}
]