View impact partner details
This page explains how to retrieve impact partner details from the ekko Climate API. For the full response schema, see the List impact partners endpoint in the API reference.
This endpoint is useful when you want to display impact partner information in your own UI, for example showing consumers which organisations are behind the projects they support.
How it works
Send a GET request to /v3/impact-partners to retrieve the impact partners available to your organisation.
You can optionally filter by a specific organisation using the organisationId query parameter. If omitted, the API returns all impact partners available to the requesting organisation.
Response fields
| Field | Type | Description |
|---|---|---|
id | UUID | Unique identifier for the impact partner |
name | String | Impact partner name |
shortDescription | String | Brief description of the impact partner |
longDescription | String | Detailed description of the impact partner |
logo | String | URL to the impact partner's logo |
website | String | Impact partner website URL |
Example response
[
{
"id": "9f1c7a0e-52b6-4f5d-9f9d-1d6d4b7f1c2a",
"name": "Gold Standard",
"shortDescription": "Gold Standard sets the benchmark for high-integrity carbon projects.",
"longDescription": "Established by WWF and other NGOs, Gold Standard certifies projects that avoid, reduce or remove emissions while supporting the UN Sustainable Development Goals.",
"logo": "https://cdn.ekko.earth/organisations/impact-partners/gold-standard/logo.png",
"website": "https://www.goldstandard.org"
},
{
"id": "6b4c2f1d-0c3a-4b6a-9e2e-9ad2f0c4c0f1",
"name": "Tusk",
"shortDescription": "Tusk supports African-led conservation projects across the continent.",
"longDescription": "From tackling wildlife crime to reducing human-wildlife conflict, Tusk protects endangered species and sustains local communities.",
"logo": "https://cdn.ekko.earth/organisations/impact-partners/tusk/logo.png",
"website": "https://www.tusk.org"
}
]