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

# Introduction

> Working with Pingmee Micro Services

<Note>
  When authenticating a request, you should send a <code>Cookie</code> header instead of an <code>Authorization</code> header.
</Note>

## Authentication & Headers

Our platform is built using multiple **microservices**.
Each request **must include the following two headers**:

* `Cookie` – Your personal access token
* `x-api-key` – Your business API key

Both values are unique to your business and are available in the Pingmee app.

### Where to find your token and API key

1. Open the Pingmee app
2. Go to **Settings** (gear icon in the sidebar)
3. Select **Developer Tools** (`כלים למפתחים`)

On this page you will find:

* **Personal token** – use this value in the `Cookie` header. You can regenerate it at any time.
* **API key** – use this value in the `x-api-key` header on every API call.

<img src="https://mintcdn.com/pingmee/tkv8sRnreGsQrutz/images/developer-tools.png?fit=max&auto=format&n=tkv8sRnreGsQrutz&q=85&s=2befd479ab386505bc39daf260483cc5" alt="Developer Tools page in Pingmee Settings" width="1024" height="673" data-path="images/developer-tools.png" />

<Warning>
  Keep your personal token and API key private. Do not share them or commit them to version control.
</Warning>

### Required Headers

```http theme={null}
Cookie: <your-personal-token>
x-api-key: <your-api-key>
```

Requests missing either of these headers will be rejected.

***

### Rate Limits

Rate limits depend on your business subscription plan. Limits apply across all Pingmee API services combined.

| Plan     | Rate (req/s) | Burst | Daily quota |
| -------- | ------------ | ----- | ----------- |
| Trial    | 20           | 40    | 10,000      |
| Basic    | 40           | 80    | 60,000      |
| Expanded | 100          | 200   | 125,000     |
| ExpertAI | 200          | 400   | 200,000     |
| Partner  | 500          | 1,000 | Custom      |

***

## Public Services

###

* **Core:** `https://api.pingmee.co.il`

* **AI:** `https://ai.pingmee.co.il`

* **Business:** `https://business.pingmee.co.il`

* **Campaigns:** `https://campaigns.pingmee.co.il`

* **Workflows:** `https://workflows.pingmee.co.il`

***

## Example Headers Usage

```json theme={null}
{
  "headers": {
    "Cookie": "<your-personal-token>",
    "x-api-key": "<your-api-key>"
  }
}
```
