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

# Quickstart

> Get running in five minutes

<Steps>
  <Step title="Get access">
    Request API access from your Reflection AI contact.
  </Step>

  <Step title="Make a request">
    ```bash theme={null}
    curl https://api.reflection.ai/v1/chat/completions \
      -H "Authorization: Bearer $REFLECTION_API_KEY" \
      -H "Content-Type: application/json" \
      -d '{"model": "t6", "messages": [{"role": "user", "content": "Hello"}]}'
    ```
  </Step>

  <Step title="Next steps">
    Read the guides for model details and the Mirror platform.
  </Step>
</Steps>

<Note>
  Endpoint and model names above are placeholders. Update before external release.
</Note>
