Developer API & WebhooksDeveloperAdvanced

Headless Commerce REST API & Webhook Subscriptions

Build custom mobile apps, POS integrations, and automated pipelines using Conversora's REST API and real-time webhook subscriptions.

5 min readUpdated: 2026-09-18
Key Takeaways & Learning Goals
  • Access products, orders, inventory, and customer endpoints with Bearer API tokens.
  • Receive cryptographically signed webhooks for orders.created, inventory.low, and message.received.
  • Interact with AI tools via Meta MCP (Model Context Protocol).

API Authentication

Generate your secure API secret key in Admin Console → Developer → API Keys. Include this token in the Authorization header of every request.

Example: Fetching store products via REST API
curl -X GET https://conversora.io/api/v1/storefront/products \
  -H "Authorization: Bearer cnv_live_9a8b7c6d5e4f3g2h1" \
  -H "Content-Type: application/json"

Subscribing to Webhooks

In Developer → Webhooks, register your endpoint URL and select the event topics you want to receive (e.g. `order.created`, `order.paid`, `inventory.updated`). Each delivery payload includes an `x-conversora-signature` header for HMAC-SHA256 signature verification.