Welcome to the new Tahua Help Center!
For the complete documentation index, see llms.txt. This page is also available as Markdown.

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

Example Response


GET /api/v2/funding_rounds/:id

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

Example Request

Last updated

Was this helpful?