Public API

Developer API

The Synclyst API turns product photos into listing-ready data. Every scan feeds our anonymised market intelligence dataset — after enough similar items, responses include real sold-price signals, not just AI guesses.

Get started in 2 minutes

  1. Open the dashboard and create an API key
  2. Call endpoints with Authorization: Bearer sk_live_…
Go to API dashboard →

Authentication

Developer keys use the sk_live_ prefix. Never expose keys in client-side browser code — call the API from your server or Zapier.

Base URL

https://auralink-api-299567386855.us-central1.run.app — also available at /api/v1/public/*

Endpoints

POST /v1/extract

Full product extraction. Body: image_base64 or image_url, mime_type, optional use_case (reseller, real_estate, insurance, pawnbroker, invoice, restaurant, generic).

curl -X POST https://auralink-api-299567386855.us-central1.run.app/v1/extract \
  -H "Authorization: Bearer YOUR_KEY" \
  -H "Content-Type: application/json" \
  -d '{"image_url":"https://example.com/product.jpg","use_case":"reseller"}'

Response includes scan_id, extraction fields, and market_intelligence.

POST /v1/classify

Category, brand, and condition only (skips web enrichment). Cheaper per call.

POST /v1/value

Price estimate from sold data when available; AI fallback otherwise.

GET /v1/market-value

Query: category, brand, optional condition, platform.

GET /v1/trending

Categories with rising scan volume vs the prior period.

PATCH /v1/scan/{scan_id}/outcome

Report listing outcome to improve market intelligence.

Rate limits

  • 10–100 requests per minute per API key (by plan)
  • 100 free calls/month on the Free plan
  • HTTP 429 when monthly quota exceeded (unless pay-as-you-go is enabled)

Pricing (API plans)

PlanMonthly callsPrice
Free100£0
Starter1,000£99/mo
Pro10,000£299/mo
EnterpriseCustomContact us

The Free plan includes 100 calls/month. After that, enable pay-as-you-go billing in the dashboard to keep calling — metered per request (e.g. extract ~£0.10, market-value ~£0.15). Or upgrade to Starter/Pro for higher included volume.

Legacy routes

POST /api/v1/vision/extract remains for the web app. New integrations should use /v1/extract.