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

# Overview

> Base URL, authentication, and conventions for the Paubox Marketing API.

## Base URL

`https://api.paubox.net/v1/orca/YOUR_USERNAME`

Replace `YOUR_USERNAME` with your API endpoint username.

## Authorization

Include an `Authorization` header with every request:

`Authorization: Token token=YOUR_API_KEY`

Replace `YOUR_API_KEY` with your API key. Generate your key on the [Paubox Marketing > Settings](https://next.paubox.com/marketing/settings) page (note: each API key is displayed only once upon creation):

<Frame>
  ![](https://docs.paubox.com/services/api/attachments/07715022-3347-4753-9125-2418540efb57)
</Frame>

## Example call

```bash theme={null}
curl -X POST \
  https://api.paubox.net/v1/orca/YOUR_USERNAME/subscribers \
  -H 'Authorization: Token token=YOUR_API_KEY' \
  -H 'Content-Type: application/json' \
  -d '{
    "subscriber": {
      "email": "recipient@example.com",
      "first_name": "Jane",
      "last_name": "Smith"
    }
  }'
```

## Date format

Dates are passed as ISO8601 strings with UTC timezone

## Finding id parameters for subscription\_list\_id, campaign\_mailing\_id, etc.

<CardGroup>
  <Card title="Finding parameter values in the web dashboard" icon="file-text" href="/marketing/parameter-values" horizontal />
</CardGroup>
