← Developers

API documentation

The Synqro REST API is in development. This is a preview of the shape it will take. Request early access at developers@synqro.app.

Authentication

All requests authenticate with a bearer API key from your developer console.

curl https://api.synqro.app/v1/orders \
  -H "Authorization: Bearer sk_live_..."

Endpoints

GET/v1/listings
POST/v1/listings
GET/v1/orders
POST/v1/repricer/rules
GET/v1/agents
POST/v1/webhooks

Webhooks

Subscribe to events like order.created, listing.repriced, settlement.completed and stock.low.

{
  "event": "order.created",
  "data": { "id": "ord_123", "marketplace": "ebay", "total": 24.99 }
}