Public API v1.0
Build on CAMARON
REST endpoints and signed webhooks for ponds, crop cycles, harvests, IoT readings, marketplace listings and compliance certificates. Designed for ERPs, feed mills, lab systems and processors.
5-minute quickstart
1. Create an API key from the developer portal (Pro tier or above).
2. Call the ping endpoint to confirm auth:
curl https://api.camaron.app/v1/ponds \
-H "x-api-key: $CAMARON_API_KEY"3. Subscribe to a webhook so your system stays in sync:
curl -X POST https://api.camaron.app/v1/webhooks \
-H "x-api-key: $CAMARON_API_KEY" \
-H "Content-Type: application/json" \
-d '{"url":"https://yourapp.example/hooks/camaron","events":["pond.harvested","cycle.closed"]}'Every webhook is signed with HMAC-SHA256 — verify the X-CAMARON-Signature header using your webhook secret. See the Webhooks tab for the canonical signing recipe.