The toloka.yandex.com
domain will be disabled starting April 1, 2023. Please use the toloka.dev
domain for API requests.
Gets the list of created skills.
GET https://toloka.dev/api/v1/skillsAuthorization: OAuth <OAuth token>
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 |
---|---|
name | string Skill name. |
sort | string
|
Standard query parameters | limit, id_gt, id_gte, id_lt, id_lte, created_gt, created_gte, created_lt, created_lte |
You can set up the display of the list of skills in parts (for example, 10 skills at a time):
Show the first 10 skills
GET https://toloka.dev/api/v1/skills?sort=id&limit=10Authorization: OAuth <OAuth token>
Show the remaining tasks sorted by ascending ID
GET https://toloka.dev/api/v1/skills?sort=id&limit=10&id_gt=<ID of the last skill from the previous response>Authorization: OAuth <OAuth token>
{"items": [{skill 1}, {skill 2}, ... {skill n}], "has_more": false}
Property | Description |
---|---|
items[] | array of objects Contains information about skills. |
has_more | boolean Shows whether the list is complete. Acceptable values:
|