StockX API endpoint
Use Crawlora's StockX upcoming release calendar API to extract supported public StockX data as structured JSON. This page includes request parameters, cURL examples, response schema, error behavior, credit cost, and a Playground link for testing before integration.
/stockx/releasesReturns 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. Developers commonly use this endpoint for data enrichment, monitoring, research dashboards, internal automation, and agent-native workflows that need repeatable structured public web data. Authentication uses the documented Crawlora headers, and usage is metered with the credit cost shown on this page.
Request parameters are generated from the active endpoint catalog. Required values must be sent before Crawlora can call the upstream public web data source.
| Parameter | Type | Required | Default | Description | Example |
|---|---|---|---|---|---|
| from | string | No | today | Only include releases on or after this date (YYYY-MM-DD, UTC). Defaults to today | |
| page | integer | No | 1 | 1-indexed result page, defaults to 1 | |
| limit | integer | No | 20 | Results per page, defaults to 20, maximum 100 | |
| x-api-key (header) | string | Yes | API key required |
curl -X GET "https://api.crawlora.net/api/v1/stockx/releases?page=1&limit=10" \ -H "x-api-key: $CRAWLORA_API_KEY"
Send your scraping API key in the x-api-key header. Use the console API Keys page to rotate or select the active key.
Endpoint usage is metered in credits. The plan prices, included credits, limits, and overage rates below match the active backend billing configuration.
| Plan | Price | Included credits | Daily cap | Rate limit | Overage |
|---|---|---|---|---|---|
| Free | $0/mo | 2,000 | 500 daily credits | 5/min | No overage |
| Starter | $9/mo | 20,000 | 5,000 daily credits | 15/min | $0.75/1,000 overage credits when enabled |
| Growth | $29/mo | 100,000 | 25,000 daily credits | 45/min | $0.45/1,000 overage credits when enabled |
| Pro | $79/mo | 400,000 | No daily cap | 120/min | $0.30/1,000 overage credits |
| Business | $199/mo | 1,200,000 | No daily cap | 300/min | $0.20/1,000 overage credits |
| Enterprise | $499/mo | 5,000,000 | No daily cap | 1,000/min | $0.12/1,000 overage credits |
This endpoint is executed through Crawlora's managed scraping infrastructure.
- Results are always sorted by release date ascending, starting from `from`. StockX's release calendar mixes true street-date releases with items whose original street date has passed but were newly listed/restocked, so an occasional older `release_date` appearing near the top of the page is expected upstream behavior, not a parser bug. - `total_count` reflects StockX's full matching-result count for the applied `from` filter, not just `len(releases)`. - Each `releases[]` entry uses the same shape as a `/stockx/search` result row, with `release_date` additionally populated from StockX's own published release-date trait. - An invalid `from` value (not `YYYY-MM-DD`) returns `400` before any upstream request is made. Example response: ```json { "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 } ] } } ```
Crawlora does not silently return bad data when the upstream page cannot be used.
| Status | Common failure case |
|---|---|
| 400 | Invalid input or missing required parameter |
| 429 | Plan or endpoint rate limit exceeded |
| 500 | Internal execution error |
| 502 | Upstream platform failed, returned unusable HTML, or served a challenge page that could not be resolved |
When possible, Crawlora returns structured error context so your integration can retry, back off, or inspect the request.
| Status | Description | Schema |
|---|---|---|
| 400 | Bad Request | #/definitions/app.Response |
| 500 | Internal Server Error | #/definitions/app.Response |
| 503 | Service Unavailable | #/definitions/app.Response |
{
"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
}
]
}
}Request schema
No body schema
Response schema
#/definitions/stockx.releasesResponseDoc
| Field | Type | Required | Enum | Bounds | Example | Description |
|---|---|---|---|---|---|---|
| code | integer | No | 200 | |||
| data | stockx.ReleaseCalendarResponse | No | ||||
| data.from | string | No | 2026-08-04 | |||
| data.limit | integer | No | 20 | |||
| data.page | integer | No | 1 | |||
| data.releases | array | No | ||||
| data.releases[].brand | string | No | Jordan | |||
| data.releases[].gender | string | No | men | |||
| data.releases[].highest_bid | integer | No | 267 | |||
| data.releases[].id | string | No | 9acafeb5-bc4a-4d66-bc3a-4899d2e64775 | |||
| data.releases[].image_url | string | No | ||||
| data.releases[].last_sale | integer | No | 176 | |||
| data.releases[].lowest_ask | integer | No | 173 | |||
| data.releases[].model | string | No | Jordan 4 Retro | |||
| data.releases[].product_category | string | No | sneakers | |||
| data.releases[].release_date | string | No | 2026-08-05 | |||
| data.releases[].title | string | No | Jordan 4 Retro Toro Bravo (2026) | |||
| data.releases[].url_key | string | No | air-jordan-4-retro-toro-bravo-2026 | |||
| data.total_count | integer | No | 469 | |||
| msg | string | No | OK |
Use environment variables for secrets and keep Crawlora API keys server-side.
curl -X GET "https://api.crawlora.net/api/v1/stockx/releases?page=1&limit=10" \
-H "x-api-key: $CRAWLORA_API_KEY"Crawlora is designed for responsible structured public web data workflows. Customers are responsible for using Crawlora in compliance with applicable laws, third-party rights, target-platform rules, and Crawlora terms.
Read Crawlora terms