GET
/
certifications
{
  "count": 123,
  "next": "<string>",
  "previous": "<string>",
  "results": [
    {
      "id": 123,
      "name": "<string>",
      "description": "<string>",
      "project_name": "<string>"
    }
  ]
}

Certifications API

Access information about project certifications and standards compliance.

Authorizations

X-API-KEY
string
required

API key for authentication.

Endpoint

Get All Certifications

name
string

Filter by certification name

project
string

Filter by project ID

page
integer

Page number for pagination

page_size
integer
default:"10"

Number of results per page (max: 100)

Response

count
integer

Total number of certifications

next
string

URL for next page of results

previous
string

URL for previous page of results

results
array

Example Request

import requests

headers = {
    'Authorization': 'Bearer YOUR_API_KEY'
}

# Get all VCS certifications
params = {
    'name': 'VCS',
    'page_size': 50
}

response = requests.get(
    'https://api.carbonapi.com/certifications',
    headers=headers,
    params=params
)

Example Response

{
  "count": 150,
  "next": "https://api.carbonapi.com/certifications?page=2",
  "previous": null,
  "results": [
    {
      "id": 1,
      "name": "VCS",
      "description": "Verified Carbon Standard certification",
      "project_name": "Amazon Forest Conservation Project"
    },
    {
      "id": 2,
      "name": "CCB",
      "description": "Climate, Community & Biodiversity Standards",
      "project_name": "Amazon Forest Conservation Project"
    }
  ]
}