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

# Quickstart

> Get your API keys and make your first request.

Log in to the [Devdraft Console](https://console.devdraft.ai), go to **Settings → App Settings**, and create a new API key. Your key pair consists of a `client key` and a `client secret`. Store the secret securely because it is only shown once.

Include both in the header of every request:

```bash theme={null}
x-client-key: <YOUR_CLIENT_KEY>
x-client-secret: <YOUR_CLIENT_SECRET>
```

Send a test request to verify your credentials:

```bash theme={null}
curl https://api.devdraft.ai/v0/payment-intents \
  -H "x-client-key: <YOUR_KEY>" \
  -H "x-client-secret: <YOUR_SECRET>"
```

<Warning>
  Never expose your client secret in client-side code or public repositories. Store it as an environment variable on your server.
</Warning>
