POST
/
v3
/
stockx
/
graphql
curl --request POST \
  --url https://api.kicks.dev/v3/stockx/graphql \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '{
  "query": "<string>",
  "variables": {}
}'
{
  "status": "success",
  "data": {
    "data": {
      "product": {
        "title": "Nike Air Foamposite One Galaxy (2025)"
      }
    }
  },
  "meta": {
    "execution_time": 253
  }
}

Membership

This endpoint is available in the Enterprise tier.

Body payload

query
string
required

The GraphQL query to execute.

# Example
query getProduct($id: String!) {
  product(id: $id) {
    title
  }
}
variables
object

The variables to pass to the query.

// Example
{
  "id": "a6f71c58-1b36-4144-8e99-587b0ddff3cc"
}

We have the GraphQL schema of StockX available, connect on your dashboard to get it.

{
  "status": "success",
  "data": {
    "data": {
      "product": {
        "title": "Nike Air Foamposite One Galaxy (2025)"
      }
    }
  },
  "meta": {
    "execution_time": 253
  }
}