Cloverly Offset Types API

List the carbon-offset project types and individual offset sources available through Cloverly — including reforestation, biochar, direct air capture, renewable energy, methane abatement, and other registry-backed projects. Each source records the registry (Verra, Gold Standard, ACR, Climate Action Reserve, Puro.earth, etc.), project location, vintage, available tonnes, and price per tonne.

Operations 2

GET /2019-03-beta/offsets Cloverly List Offset Sources #
GET /2019-03-beta/offsets/{slug} Cloverly Retrieve Offset Source #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/cloverly-offset-types-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

cloverly-offset-types-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Cloverly Account Offset Types API
  description: 'Retrieve the authenticated account record — currency, default offset preferences, and the API key context (public vs private, sandbox vs production).

    '
  version: 2019-03-beta
  contact:
    name: Cloverly Support
    url: https://cloverly.com/contact
  license:
    name: Cloverly Terms of Service
    url: https://cloverly.com/terms-of-service
servers:
- url: https://api.cloverly.com
  description: Production server
security:
- BearerAuth: []
tags:
- name: Offset Types
  description: Catalog of available carbon-offset projects and sources
paths:
  /2019-03-beta/offsets:
    get:
      summary: Cloverly List Offset Sources
      description: List the available offset sources (projects) the authenticated account can purchase from.
      operationId: listOffsets
      tags:
      - Offset Types
      responses:
        '200':
          description: A list of offset sources.
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Offset'
  /2019-03-beta/offsets/{slug}:
    get:
      summary: Cloverly Retrieve Offset Source
      description: Retrieve a single offset source by slug, including project details, registry link, and price.
      operationId: retrieveOffset
      tags:
      - Offset Types
      parameters:
      - name: slug
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: The offset source record.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Offset'
components:
  schemas:
    Offset:
      type: object
      properties:
        slug:
          type: string
        name:
          type: string
        description:
          type: string
        registry_name:
          type: string
          description: Registry that issued the credit (Verra, Gold Standard, ACR, CAR, Puro.earth, etc.).
        registry_project_id:
          type: string
        registry_url:
          type: string
          format: uri
        offset_type:
          type: string
          description: Project category — Reforestation, Biochar, DAC, Renewable Energy, Methane, etc.
        country:
          type: string
        location:
          type: string
        vintage_year:
          type: integer
        available_co2e_in_kg:
          type: number
          description: Currently available CO2-equivalent inventory in kilograms.
        price_per_kg_in_usd_cents:
          type: number
        image_url:
          type: string
          format: uri
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer