The toloka.yandex.com
domain will be disabled starting April 1, 2023. Please use the toloka.dev
domain for API requests.
Gets aggregated responses.
You can send a maximum of 5 requests of this kind per minute, 30 requests per hour, and 200 requests per day. Refer to the Rate limiting section for the complete list of the request limitations in Toloka API.
GET https://toloka.dev/api/v1/aggregated-solutions/<operation_id>Authorization: OAuth <OAuth token>
Parameter | Overview |
---|---|
operation_id | Operation ID. |
Title | Overview |
---|---|
Authorization | A token for account authorization. Add OAuth as a prefix. |
Query parameters are specified in the link after the question mark and separated by &
.
Parameter | Overview |
---|---|
sort | string
|
Standard query parameters | limit, task_id_gt, task_id_gte, task_id_lt, task_id_lte. |
You can set up the display of the list of responses in parts (for example, 10 responses at a time):
Show the first 10 responses
GET https://toloka.dev/api/v1/aggregated-solutions/<operation_id>?sort=task_id&limit=10Authorization: OAuth <OAuth token>
Show the remaining tasks sorted by ascending ID
GET https://toloka.dev/api/v1/aggregated-solutions/<operation_id>?sort=task_id&limit=10&task_id_gt=<ID of the last task from the previous response>Authorization: OAuth <OAuth token>
{"items" : [{task #1}, {task #2}, ... {task #n}], "has_more": true}
Property | Description |
---|---|
items[] | array of objects Contains aggregation result. |
has_more | boolean Shows whether the list is complete. Acceptable values:
|