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

# Introduction

> Velocity for Shopify REST API

## Base URL

```text theme={null}
https://api.velocity.shop
```

## Authentication

Every request must include your API token in the `Authorization` header:

```bash theme={null}
curl https://api.velocity.shop/reps/ \
  -H "Authorization: Bearer <your-token>"
```

### Getting your token

Admins can generate API tokens from the Velocity app in Shopify Admin, under
[**Settings**](https://admin.shopify.com/apps/velocity-commission-maps/settings).
Merchant API access requires the Premium plan.

## Pagination

List endpoints accept `limit` and `offset` query parameters and return a plain JSON array.

### Limits

| Parameter | Default | Maximum |
| --------- | ------- | ------- |
| `limit`   | 20      | 100     |

## Rate limits

Each API token is limited to 60 requests per minute. Exceeding the limit returns a
`429 Too Many Requests` response.
