All data sources

Gold Standard

No authgold-standard

Gold Standard is a leading voluntary carbon-credit standard and registry of record. This connector reads its public API for certified emission-reduction and removal projects (type, methodology, country, SDGs, crediting periods, developer) and issued carbon credits (serial numbers, vintages, batch and credit-number ranges, retirement and transfer status) — useful for ESG reporting, offset sourcing, and verifying carbon-credit provenance. No credentials required.

Provenance

PublisherGold Standard

Freshness & coverage

FreshnessFreshness not declared
GeographicNot declared
TemporalNot declared
AuthenticationNo credentials required

Methods (5)

  • searchProjects

    read

    List 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

    read

    Get 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

    read

    List 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

    read

    Get 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

    read

    Describe endpoints, pagination, and filtering with a live reachability probe.

    Input schema
    {
      "type": "object",
      "properties": {},
      "additionalProperties": false
    }