> For the complete documentation index, see [llms.txt](https://help.tahua.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://help.tahua.io/knowledge-base/integrations-help-guides/api-access/api-reference.md).

# API Reference

All API endpoints are under `/api/v2/` and require a valid OAuth2 Bearer token. See [Using the API](/knowledge-base/integrations-help-guides/api-access/using-the-api.md) for authentication details.

### Base URL

```
https://<your-subdomain>.tahua.io/api/v2
```

### Pagination

All list endpoints support cursor-based pagination using the following query parameters:

| Parameter | Type    | Description                                        |
| --------- | ------- | -------------------------------------------------- |
| `limit`   | integer | Number of results to return (default: 50, max: 50) |
| `gt`      | integer | Return records with ID greater than this value     |
| `lt`      | integer | Return records with ID less than this value        |

To page forward, pass the `id` of the last record as `gt`. To page backward, pass the `id` of the first record as `lt`.

### Resources

* [Funding Applications](/knowledge-base/integrations-help-guides/api-access/api-reference/funding-applications.md)
* [Funding Rounds](/knowledge-base/integrations-help-guides/api-access/api-reference/funding-rounds.md)
* [Registration Entities](/knowledge-base/integrations-help-guides/api-access/api-reference/registration-entities.md)
* [Contracts](/knowledge-base/integrations-help-guides/api-access/api-reference/contracts.md)
* [Milestones](/knowledge-base/integrations-help-guides/api-access/api-reference/milestones.md)
* [File Inputs](/knowledge-base/integrations-help-guides/api-access/api-reference/file-inputs.md)
