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

# Everflow API Documentation

> Build integrations with the Everflow partner marketing platform using our REST API.

The Everflow API is organized around REST. It uses standard HTTP verbs, returns JSON responses, and uses conventional HTTP status codes.

## Base URL

All API requests should be made to:

```
https://api.eflow.team/v1
```

EU-hosted accounts use `https://api-eu.eflow.team/v1` instead.

## Authentication

Authenticate every request by including your API key in the `X-Eflow-API-Key` header.

```bash theme={null}
curl -H "X-Eflow-API-Key: <your-api-key>" \
  https://api.eflow.team/v1/networks
```

API keys are generated in the Everflow UI under **Control Center > Security**. See [Authentication](/user-guide/authentication) for details.

## Available APIs

| API                                                        | Description                                                                                       |
| ---------------------------------------------------------- | ------------------------------------------------------------------------------------------------- |
| **[Network API](/api-reference/network-overview)**         | Full platform management: offers, affiliates, advertisers, reporting, tracking, and more.         |
| **[Affiliate API](/api-reference/affiliate-overview)**     | Affiliate-scoped access to offers, reporting, deals, invoices, postbacks, and traffic management. |
| **[Advertiser API](/api-reference/advertiser-overview)**   | Advertiser-scoped access to offers and reporting.                                                 |
| **[Marketplace API](/api-reference/marketplace-overview)** | Partner connections, offers, earnings, and API key management.                                    |
| **[Webhooks](/webhooks/overview)**                         | Receive real-time HTTP notifications when advertisers, offers, or partners change.                |
| **[AI & Automation](/ai-automation/overview)**             | Use AI assistants and automation frameworks with machine-readable OpenAPI specs.                  |
| **[JavaScript SDK](/sdk/overview)**                        | Client-side click, conversion, and impression tracking without redirect links.                    |

## Quick links

<CardGroup cols={3}>
  <Card title="User Guide" icon="book" href="/user-guide/authentication">
    Learn authentication, paging, filtering, and other API fundamentals.
  </Card>

  <Card title="Network API" icon="server" href="/api-reference/network-overview">
    The primary API for managing offers, affiliates, advertisers, and reporting.
  </Card>

  <Card title="Affiliate API" icon="handshake" href="/api-reference/affiliate-overview">
    Affiliate-scoped endpoints for offers, reporting, deals, and postbacks.
  </Card>

  <Card title="Advertiser API" icon="bullhorn" href="/api-reference/advertiser-overview">
    Advertiser-scoped endpoints for offers and reporting.
  </Card>

  <Card title="AI & Automation" icon="robot" href="/ai-automation/overview">
    AI assistants, automation recipes, and OpenAPI specs for agent frameworks.
  </Card>

  <Card title="Webhooks" icon="bell" href="/webhooks/overview">
    Real-time notifications for advertiser, offer, and partner events.
  </Card>

  <Card title="JavaScript SDK" icon="code" href="/sdk/overview">
    Client-side tracking for clicks, conversions, and impressions.
  </Card>
</CardGroup>
