Skip to content

List Store Workers

Method: GET

Endpoint: /api/v2/store

Authentication: No API token required

GET/api/v2/storeList store workers
AuthorizationNot required

This is a public endpoint and does not require an API token.

Parameters
query · integer · default `0`; minimum 0Optional

Pagination offset, starting from 0. Constraints: default `0`; minimum 0.

query · integer · default `20`; range 1-100Optional

Page size. Constraints: default `20`; range 1-100.

query · stringOptional

Keyword for title, slug, or path.

Request BodyNot applicable
No JSON request body. Fill the path or query parameters above.

Use this endpoint to search public Store Workers and collect the Worker slug or path for follow-up calls.

ParameterRequiredTypeDescription
offsetNointegerPagination offset, starting from 0. Use it for result previews, list paging, or choosing a result window. Constraints: default 0; minimum 0.
limitNointegerPage size. limit is capped at 100 on list and result endpoints. Constraints: default 20; range 1-100.
keywordNostringKeyword for title, slug, or path
Terminal window
curl -X GET "https://openapi.coreclaw.com/api/v2/store?offset=0&limit=20&keyword=coffee"
{
"code": 0,
"data": {
"scraper": [
{
"description": "Demo worker description",
"name": "demo-worker",
"path": "owner~demo-worker",
"slug": "demo-worker",
"title": "Demo Worker",
"username": "owner"
}
]
},
"message": "success",
"request_id": "req-123"
}
  • This endpoint does not require an API token.
HTTP StatusApplication CodeMeaning
2000OK
40011000Bad Request
40112001Unauthorized
40411004Not Found
42211000Unprocessable Entity
42913000Too Many Requests
50010000Internal Server Error