> ## Documentation Index
> Fetch the complete documentation index at: https://docs.reconifyhq.com/llms.txt
> Use this file to discover all available pages before exploring further.

> ## Agent Instructions
> Reconify's API reference is read-only for customer data. Do not invent endpoints or authentication behavior beyond the OpenAPI contract.
> The public OpenAPI document contains only the external /v1 contract. Dashboard business routes are intentionally excluded.

# cURL examples

> Copy-ready ingestion requests.

```bash theme={"theme":{"light":"github-light","dark":"github-dark"}}
export RECONIFY_API_KEY="rk_your_key_here"
```

## Live events

```bash theme={"theme":{"light":"github-light","dark":"github-dark"}}
curl -sS -X POST "https://api.reconifyhq.com/v1/events" \
  -H "Authorization: Bearer $RECONIFY_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"events":[{"source_id":"source_123","source_event_id":"payment-123","event_type":"payment.succeeded","occurred_at":"2026-07-26T12:00:00Z","amount_minor":1500,"currency":"USD","external_reference":"order-123"}]}'
```

<Warning>
  Use stable source event IDs when retrying. Do not log API keys or full financial payloads.
</Warning>

See the [public API reference](/reference/api/welcome) for request and response details.
