Get the list of projects
Gets the list of projects.
Request
Production version
Sandbox
GET https://toloka.yandex.com/api/v1/projects
Authorization: OAuth <OAuth token>
GET https://sandbox.toloka.yandex.com/api/v1/projects
Authorization: OAuth <OAuth token>
Headers
Title |
Overview |
Authorization |
A token for account authorization. Add OAuth as a prefix. |
Query parameters
Specified in the link after the question mark; separated by &
.
Parameter |
Overview |
status |
string Status of the project:
|
sort |
string Parameters to sort by:
To learn how to configure sorting, see Sorting the list of objects. |
owner |
string Requester ID. |
Standard query parameters |
limit, id_gt, id_gte, id_lt, id_lte, created_gt, created_gte, created_lt, created_lte. |
Query example
You can set up the display of the list of projects in parts (for example, 10 projects at a time):
- Show the first 10 projects, starting with the project with the lowest ID.
- Show the remaining projects (10 at a time) in ascending order.
Show the first 10 projects
Production version
Sandbox
GET https://toloka.yandex.com/api/v1/projects?sort=id&limit=10
Authorization: OAuth <OAuth token>
GET https://sandbox.toloka.yandex.com/api/v1/projects?sort=id&limit=10
Authorization: OAuth <OAuth token>
Show the remaining tasks sorted by ascending ID
Production version
Sandbox
GET https://toloka.yandex.com/api/v1/projects?sort=id&limit=10&id_gt=<ID of the last project from the previous response>
Authorization: OAuth <OAuth token>
GET https://sandbox.toloka.yandex.com/api/v1/projects?sort=id&limit=10&id_gt=<id of the last project from the previous response>
Authorization: OAuth <OAuth token>
Response
Contains a list of projects and their properties in the items
array:
{"items": [{properties of project 1}, {properties of project 2}, ... {properties of project n}], "has_more": false}