Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.wearo.io/llms.txt

Use this file to discover all available pages before exploring further.

Authentication

All Direct API requests must include your API key in the X-API-Key header.

Endpoint

POST https://api.wearo.io/v1/tryon

Required headers

HeaderRequiredDescription
X-API-KeyYesYour Wearo API key (starts with wearo_)
Content-TypeYesMust be application/json
OriginConditionalRequired when domain restrictions are active on your key

Example

curl -X POST "https://api.wearo.io/v1/tryon" \
  -H "Content-Type: application/json" \
  -H "X-API-Key: wearo_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" \
  -d '{ ... }'

Get your API key

Don’t have a key? Get one from your dashboard →

Domain restrictions

If you’ve configured domain restrictions on your key, include the Origin header:
-H "Origin: https://mystore.com"
Learn more about domain restrictions →