Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.climatifai.com/llms.txt

Use this file to discover all available pages before exploring further.

The /support endpoints give you access to government agricultural support programs available across LATAM. You can list all programs with a single call or retrieve the details of a specific program by its ID. Use these endpoints to surface funding opportunities, subsidies, and technical assistance schemes alongside your agroclimate data.

GET /support/programs

Returns a list of all available government agricultural support programs.

Endpoint

GET api.climatifai.com/support/programs

Parameters

This endpoint takes no parameters.

Response

programs
array
required
Array of government support program objects. Each element represents one program.
Program data is being actively populated. Current responses may return an empty array while the dataset is being assembled.

Example

curl "https://api.climatifai.com/support/programs"
{
  "programs": []
}

GET /support/programs/

Returns the details of a single government support program identified by its ID.

Endpoint

GET api.climatifai.com/support/programs/{program_id}

Parameters

program_id
string
required
The unique identifier of the program to retrieve.

Response

program
object
The program detail object. Returns null when the program ID is not found or data has not been populated yet.

Example

curl "https://api.climatifai.com/support/programs/proagro-mx"
{
  "program": null
}