Authentication
Bearer API Keys
VALUE AI uses API keys with bearer authentication for every protected request.
Security: Keep API keys secret. Never expose them in public repos or client-side applications.
Header Format
Send your key in the Authorization header using the Bearer scheme.
Base URL: https://tryvalue.ai/api/v1
curl -X POST https://tryvalue.ai/api/v1/appraise-product \
-H "Authorization: Bearer value_your_api_key" \
-H "Content-Type: application/json" \
-d '{
"image_url": "https://example.com/image.jpg",
"country": "us"
}'