Skip to main content
This guide gets you set up with the nocnoc API — from understanding the environment to making your first authenticated request.

Environment

nocnoc runs a single live environment. Every request you make is processed as a real transaction against real data.
PropertyValue
Base URLhttps://live.nocnocstore.com/api/v2
StatusActive
All requests are live. Any products you create or orders you place affect real customers. Coordinate with your Account Manager before running volume tests.

Authentication

nocnoc uses API keys. Include your SELLER_KEY in the X-Api-Key header on every request. Your key is provided by the nocnoc team — contact your Account Manager if you don’t have one yet. Every request must also include the Content-Type: application/json header. Requests without it will return a 415 Unsupported Media Type error.
HeaderValue
X-Api-KeyYour seller API key
Content-Typeapplication/json
No IP allowlist configuration is required. The API accepts requests from any origin IP address.

Your first request

curl https://live.nocnocstore.com/api/v2/products \
  -H "X-Api-Key: YOUR_SELLER_KEY" \
  -H "Content-Type: application/json"
A 200 response confirms your key is valid. A 401 indicates the key is missing or incorrect.