Skip to main content

List requests

GET 

/v2/request-queues/:queueId/requests

Returns a list of requests. This endpoint is paginated using exclusiveStartId and limit parameters.

Request

Path Parameters

    queueId string required

    Queue ID or username~queue-name.


    Example: WkzbQMuFYuamGv3YF

Query Parameters

    clientKey string

    A unique identifier of the client accessing the request queue. It must be a string between 1 and 32 characters long. This identifier is used to determine whether the queue was accessed by multiple clients. If clientKey is not provided, the system considers this API call to come from a new client. For details, see the hadMultipleClients field returned by the Get head operation.


    Example: client-abc
    exclusiveStartId string

    All requests up to this one (including) are skipped from the result.


    Example: Ihnsp8YrvJ8102Kj
    limit double

    Number of keys to be returned. Maximum value is 10000.


    Example: 100

Status 200

Response Headers
    {
    "data": {
    "items": [
    {
    "id": "dnjkDMKLmdlkmlkmld",
    "retryCount": 0,
    "uniqueKey": "http://example.com",
    "url": "http://example.com",
    "method": "GET",
    "loadedUrl": "http://example.com/example-1",
    "payload": null,
    "noRetry": false,
    "errorMessages": null,
    "headers": null,
    "userData": {
    "label": "DETAIL",
    "image": "https://picserver1.eu"
    },
    "handledAt": "2019-06-16T10:23:31.607Z"
    },
    {
    "id": "dnjkDMKLmdlkmlkmld",
    "retryCount": 0,
    "uniqueKey": "http://example.com",
    "url": "http://example.com",
    "method": "GET",
    "loadedUrl": "http://example.com/example-1",
    "payload": null,
    "noRetry": false,
    "errorMessages": null,
    "headers": null,
    "userData": {
    "label": "DETAIL",
    "image": "https://picserver1.eu"
    },
    "handledAt": "2019-06-16T10:23:31.607Z"
    }
    ],
    "count": 2,
    "limit": 2,
    "exclusiveStartId": "Ihnsp8YrvJ8102Kj"
    }
    }