Endpoint Playground
Test Crawlora's StockX upcoming release calendar API with realistic prefilled parameters. Generate a cURL request, inspect the expected structured JSON response, and open the full docs or pricing page when you are ready to integrate this public web data extraction endpoint into your application.
curl "https://api.crawlora.net/api/v1/stockx/releases" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| from | string | No | Only include releases on or after this date (YYYY-MM-DD, UTC). Defaults to today | |
| page | integer | No | 1-indexed result page, defaults to 1 | |
| limit | integer | No | Results per page, defaults to 20, maximum 100 |
{
"code": 200,
"msg": "OK",
"data": {
"from": "2026-08-04",
"page": 1,
"limit": 20,
"total_count": 469,
"releases": [
{
"id": "019eaf97-6952-7315-aaca-64a3d36b691d",
"url_key": "nike-kobe-5-protro-jalen-brunson-ny-vs-ny-pe",
"title": "Nike Kobe 5 Protro Jalen Brunson NY vs. NY PE",
"brand": "Nike",
"model": "Nike Kobe 5 Protro",
"gender": "men",
"product_category": "sneakers",
"image_url": "https://images.stockx.com/images/nike-kobe-5-protro-jalen-brunson-ny-vs-NY-pe.jpg",
"release_date": "2026-08-04",
"lowest_ask": 520,
"highest_bid": 550,
"last_sale": 599
}
]
}
}Public Playground
Sample responses, schemas, request previews, and code snippets are visible before sign in. Create an account when you are ready to save an API key and run authenticated requests.
Returns a date-ordered page (release date ascending) of StockX's upcoming release calendar: new and restocked products releasing on or after the given date, with normalized product summaries, headline pricing, and each item's published release date. Credential-free public data from the same GraphQL API backing StockX's own releases page.
{
"code": 200,
"msg": "OK",
"data": {
"from": "2026-08-04",
"page": 1,
"limit": 20,
"total_count": 469,
"releases": [
{
"id": "019eaf97-6952-7315-aaca-64a3d36b691d",
"url_key": "nike-kobe-5-protro-jalen-brunson-ny-vs-ny-pe",
"title": "Nike Kobe 5 Protro Jalen Brunson NY vs. NY PE",
"brand": "Nike",
"model": "Nike Kobe 5 Protro",
"gender": "men",
"product_category": "sneakers",
"image_url": "https://images.stockx.com/images/nike-kobe-5-protro-jalen-brunson-ny-vs-NY-pe.jpg",
"release_date": "2026-08-04",
"lowest_ask": 520,
"highest_bid": 550,
"last_sale": 599
}
]
}
}curl "https://api.crawlora.net/api/v1/stockx/releases" \
-H "x-api-key: $CRAWLORA_API_KEY"