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

# Quickstart

> Make your first Reap API call.

<Steps>
  <Step title="Get your API key">
    Contact the Reap team to get your sandbox credentials. You'll receive an API key and base URL for your environment.
  </Step>

  <Step title="Make a request">
    All requests require:

    * `Authorization` header with your API key as a Bearer token
    * `Reap-Version` header specifying the API version

    ```bash theme={null}
    curl https://sandbox.api.reap.global/v1/users \
      -H "Authorization: Bearer YOUR_API_KEY" \
      -H "Reap-Version: 2025-02-14"
    ```
  </Step>

  <Step title="Create a user">
    ```bash theme={null}
    curl -X POST https://sandbox.api.reap.global/v1/users \
      -H "Authorization: Bearer YOUR_API_KEY" \
      -H "Reap-Version: 2025-02-14" \
      -H "Content-Type: application/json" \
      -d '{
        "email": "alice@example.com",
        "phoneNumber": "+14155552671",
        "firstName": "Alice",
        "lastName": "Smith",
        "termsAcceptance": {
          "version": "2026-01-17",
          "ipAddress": "192.168.1.1"
        }
      }'
    ```
  </Step>

  <Step title="Next steps">
    Browse the [API Reference](/api-reference/overview) or set up [Webhooks](/webhooks/overview).
  </Step>
</Steps>
