1. Obtaining an API Key

API keys can be requested via email. Please email slowen@jane.com and mfarouk@jane.com to request an API key.

2. Using API Key in all request calls

All JaneAPI calls must have the header below for Authentication:

HEADER KEY x-api-key

HEADER VALUE a 40 characters API Key obtained in Step 1

Example:

curl -X 'POST' \
  'https://jane-api.janetest.com/v1.0/catalog/11/variant-quantities' \
  -H 'accept: */*' \
  -H 'Content-Type: application/json' \
  -H 'x-api-key: {Seller API Key}' \
  -d '[
  {
    "productVariantId": 0,
    "quantity": 0
  }
]'