> 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/funding-rounds.md).

# Funding Rounds

## GET /api/v2/funding\_rounds

Returns a list of funding rounds.

### Query Parameters

| Parameter | Type    | Description                                    |
| --------- | ------- | ---------------------------------------------- |
| `limit`   | integer | Results per page (default: 50, max: 50)        |
| `gt`      | integer | Return records with ID greater than this value |
| `lt`      | integer | Return records with ID less than this value    |

### Response Properties

| Property                         | Type     | Description                                         |
| -------------------------------- | -------- | --------------------------------------------------- |
| `id`                             | integer  | Unique identifier                                   |
| `created_at`                     | datetime | When the record was created                         |
| `updated_at`                     | datetime | When the record was last updated                    |
| `name`                           | string   | Funding round name                                  |
| `description`                    | string   | Description of the funding round                    |
| `start_date`                     | datetime | When the round opens                                |
| `ent_date`                       | datetime | When the round closes                               |
| `total_funding`                  | decimal  | Total funding available                             |
| `funding_amount_per_application` | decimal  | Maximum funding per application                     |
| `category`                       | string   | Round category                                      |
| `round_number`                   | integer  | Round number                                        |
| `phase`                          | string   | Current phase                                       |
| `phase_parent_id`                | integer  | Parent phase ID (for multi-phase rounds)            |
| `is_private`                     | boolean  | Whether the round is private                        |
| `is_continuous`                  | boolean  | Whether the round accepts applications continuously |
| `archived`                       | boolean  | Whether the round is archived                       |
| `published_at`                   | datetime | When the round was published                        |
| `board_hui_date`                 | datetime | Board/hui meeting date                              |
| `board_notifications`            | string   | Board notification settings                         |
| `letter_of_offer_deadline_date`  | datetime | Deadline for letter of offer                        |
| `grace_period_in_minutes`        | integer  | Grace period after closing                          |
| `cloned_from_id`                 | integer  | ID of the round this was cloned from                |
| `group.id`                       | integer  | Group ID                                            |
| `group.name`                     | string   | Group name                                          |
| `funding_category.id`            | integer  | Funding category ID                                 |
| `funding_category.name`          | string   | Funding category name                               |

### Example Request

```bash
curl -H "Authorization: Bearer YOUR_TOKEN" \
  "https://your-org.tahua.io/api/v2/funding_rounds"
```

### Example Response

```json
[
  {
    "id": 5,
    "created_at": "2025-01-10T09:00:00.000Z",
    "updated_at": "2025-02-01T12:00:00.000Z",
    "name": "Community Grants 2025",
    "description": "Annual community grants programme",
    "start_date": "2025-02-01T00:00:00.000Z",
    "ent_date": "2025-04-30T23:59:59.000Z",
    "total_funding": "500000.0",
    "is_private": false,
    "is_continuous": false,
    "archived": false,
    "group": {
      "id": 1,
      "name": "Default"
    },
    "funding_category": {
      "id": 3,
      "name": "Community Development"
    }
  }
]
```

***

## GET /api/v2/funding\_rounds/:id

Returns a single funding round. Response properties are the same as the list endpoint.

### Example Request

```bash
curl -H "Authorization: Bearer YOUR_TOKEN" \
  "https://your-org.tahua.io/api/v2/funding_rounds/5"
```
