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

# Usage & Pricing

> Understand credit costs per endpoint and how pricing works

## Pricing Tiers

<Tabs>
  <Tab title="Free">
    These endpoints cost **0 credits** per request.

    | Endpoint               | Description       |
    | ---------------------- | ----------------- |
    | `GET /industry/search` | Search industries |
    | `GET /location/search` | Search locations  |
  </Tab>

  <Tab title="1/10 Credit / Request">
    These endpoints cost **0.1 credits per request**, regardless of rows returned.

    | Endpoint               | Description              |
    | ---------------------- | ------------------------ |
    | `GET /company/search`  | Search companies by name |
    | `GET /investor/search` | Search investors by name |
  </Tab>

  <Tab title="1 Credit / Row">
    These endpoints cost **1 credit per row** returned.

    | Endpoint          | Description                 |
    | ----------------- | --------------------------- |
    | `GET /companies`  | List companies with filters |
    | `GET /company`    | Get a single company        |
    | `GET /deals`      | List deals with filters     |
    | `GET /deals/{id}` | Get a single deal           |
    | `GET /investors`  | List investors with filters |
    | `GET /investor`   | Get a single investor       |
  </Tab>

  <Tab title="Enterprise">
    These endpoints require an **Enterprise** plan.

    | Endpoint                     | Description                 |
    | ---------------------------- | --------------------------- |
    | `GET /alerts`                | Real-time funding alerts    |
    | `GET /alerts/configurations` | Manage alert configurations |

    Contact [jacob@tryfundable.ai](mailto:jacob@tryfundable.ai) to learn more about Enterprise access.
  </Tab>
</Tabs>

## How Credits Work

Paid endpoints return a `meta` object with credit usage details:

```json theme={null}
{
  "meta": {
    "limit": 25,
    "offset": 0,
    "credits_used": 25,
    "credit_source": "monthly",
    "monthly_credits_remaining": 175,
    "purchased_credits_remaining": 50
  },
  "data": [...]
}
```

| Field                         | Description                                                     |
| ----------------------------- | --------------------------------------------------------------- |
| `credits_used`                | Number of credits consumed by this request                      |
| `credit_source`               | Whether credits came from `monthly` plan or `purchased` balance |
| `monthly_credits_remaining`   | Remaining credits from your plan                                |
| `purchased_credits_remaining` | Remaining individually purchased credits                        |

* **1 credit = 1 row** returned by list and get endpoints. A request that returns 25 rows costs 25 credits.
* **Company & investor search** (`/company/search`, `/investor/search`) cost **0.1 credits per request**, regardless of rows returned.
* **Industry & location search** (`/industry/search`, `/location/search`) are always free and don't return credit fields.
* Credits come included with your plan. If you don't want a recurring plan, you can buy credits individually for as low as **\$0.05 per credit**.

## Getting Started

Your first **50 credits are free** — no credit card required. Grab your API key [here](https://www.tryfundable.ai/api-access/) and start making requests immediately.
