Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.neuro-tech.io/llms.txt

Use this file to discover all available pages before exploring further.

Endpoint

MethodPathAuthentication
GET/co2-token/cid/{cid}none

Overview

This endpoint returns token details for a climate token CID. You can call this endpoint without an API key.

Request

GET /co2-token/cid/{cid} Example:
curl https://api.neuro-admin.com/co2-token/cid/token_cid_here

Response shape

{
  "cid": "token_cid_here",
  "certificate_number": "CERT-2026-001",
  "token_id": "provider-token-id",
  "token_date": "2026-05-01",
  "profile_id": "co2_profile_cid",
  "owner_email": "climate@example.com",
  "qty": 120.5,
  "unit": "kgs",
  "amount": 150.62,
  "currency_id": "SEK",
  "compensation_list": [
    "compensation_cid"
  ],
  "token_status": "Approved",
  "paid_time": "2026-05-01 10:00:00",
  "sign_time": "2026-05-01 10:05:00",
  "created_at": "2026-05-01 09:59:00",
  "updated_at": "2026-05-01 10:05:00"
}

Error behavior

If the token CID does not exist, the API returns 404 Not Found.