All data sources

Verra (VCS Registry)

No authverra

Verra runs the Verified Carbon Standard (VCS) Registry, the largest voluntary carbon-credit registry in the world. This connector reads its public registry API (no credentials) for carbon-offset projects across Verra's programs (VCS and CCB) — project name, proponent, status, country/region, methodology/protocol, estimated annual emission reductions, and crediting periods — plus per-program issuance, retirement, and registered-project totals. Useful for carbon-accounting, ESG reporting, offset sourcing, and verifying carbon-credit provenance. Complements the Gold Standard registry connector. Toggle on and use — no setup needed.

Provenance

PublisherVerra (VCS Registry)

Freshness & coverage

FreshnessFreshness not declared
GeographicNot declared
TemporalNot declared
AuthenticationNo credentials required

Methods (4)

  • searchProjects

    read

    Search carbon-offset projects by program; filter by country, status, protocol, region, or name.

    Input schema
    {
      "type": "object",
      "properties": {
        "program": {
          "type": "string",
          "examples": [
            "VCS"
          ]
        },
        "country": {
          "type": "string",
          "examples": [
            "Indonesia"
          ]
        },
        "status": {
          "type": "string",
          "examples": [
            "Registered"
          ]
        },
        "protocol": {
          "type": "string"
        },
        "region": {
          "type": "string"
        },
        "proponent": {
          "type": "string"
        },
        "query": {
          "type": "string"
        },
        "page": {
          "type": "number"
        },
        "size": {
          "type": "number",
          "examples": [
            100
          ]
        }
      },
      "additionalProperties": false
    }

    program (VCS|CCB) server-side; other filters client-side per page.

  • getProject

    read

    Get one project by Verra resourceIdentifier (resolved client-side; no native by-id endpoint).

    Input schema
    {
      "type": "object",
      "properties": {
        "id": {
          "type": "integer",
          "examples": [
            6027
          ],
          "oneOf": [
            {
              "type": "string"
            },
            {
              "type": "number"
            }
          ]
        },
        "program": {
          "type": "string",
          "examples": [
            "VCS"
          ]
        }
      },
      "additionalProperties": false,
      "required": [
        "id"
      ]
    }

    id is the resourceIdentifier, e.g. 6027. Scans the program corpus page.

  • getProgramSummary

    read

    Per-program issued / retired / registered / buffer totals (VCS, CCB).

    Input schema
    {
      "type": "object",
      "properties": {
        "program": {
          "type": "string",
          "examples": [
            "VCS"
          ]
        }
      },
      "additionalProperties": false
    }

    program defaults to VCS. SD-VISTA/PWRS have no public summary.

  • getServiceInfo

    read

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

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