Provenance
Freshness & coverage
Methods (5)
searchProjects
readList carbon-credit projects (paged); filter by status, type, country, developer, or name.
Input schema
{ "type": "object", "properties": { "status": { "type": "string" }, "type": { "type": "string", "examples": [ "A/R" ] }, "country": { "type": "string", "examples": [ "Brazil" ] }, "developer": { "type": "string" }, "query": { "type": "string" }, "page": { "type": "number" }, "size": { "type": "number", "examples": [ 100 ] } }, "additionalProperties": false }page (1-based) + size (max 150). Filters applied client-side per page.
getProject
readGet one project by Gold Standard project id (methodology, SDGs, crediting periods, developer).
Input schema
{ "type": "object", "properties": { "id": { "type": "integer", "examples": [ 5031 ], "oneOf": [ { "type": "string" }, { "type": "number" } ] } }, "additionalProperties": false, "required": [ "id" ] }id is the numeric project id, e.g. 5031.
searchCredits
readList issued carbon credits (paged); filter by status, vintage, projectId, or serial number.
Input schema
{ "type": "object", "properties": { "status": { "type": "string" }, "vintage": { "type": "integer", "examples": [ 2025 ], "oneOf": [ { "type": "string" }, { "type": "number" } ] }, "projectId": { "type": "integer", "examples": [ 5031 ], "oneOf": [ { "type": "string" }, { "type": "number" } ] }, "serialNumber": { "type": "string" }, "page": { "type": "number" }, "size": { "type": "number" } }, "additionalProperties": false }page + size (max 150). Filters applied client-side per page.
getCredit
readGet one credit by id (serial number, batch, credit-number range, retirement/transfer flags).
Input schema
{ "type": "object", "properties": { "id": { "type": "integer", "examples": [ 583455 ], "oneOf": [ { "type": "string" }, { "type": "number" } ] } }, "additionalProperties": false, "required": [ "id" ] }id is the numeric credit id.
getServiceInfo
readDescribe endpoints, pagination, and filtering with a live reachability probe.
Input schema
{ "type": "object", "properties": {}, "additionalProperties": false }
