ScopeGreen API

API for searching and retrieving Life Cycle Assessment (LCA) metrics data for various materials and products. Use this API to access accurate environmental impact data for sustainability analysis and reporting.

BASE URL
https://scopegreen-main-1a948ab.d2.zuplo.dev

ScopeGreen

Endpoints for retrieving environmental impact data

Get the list of available metrics

Protected by API Key
GET
/api/metrics/available
1

Search for environmental metrics data by item name

Headers

Authorization

required, string

The Authorization header is used to authenticate with the API using your API key. Value is of the format Bearer YOUR_KEY_HERE.

X-Table-Filter

string

Query Parameters

item_name

required, string

year

string

geography

string

metric

string enum, default: Carbon footprint

Possible Enum Values

Carbon footprint

EF3.1 Score

Land Use

mode

string enum, default: lite

'pro' currently behaves as lite.

Possible Enum Values

lite

pro

web_mode

boolean, default: false

num_matches

integer, default: 1, maximum value of 3, minimum value of 1

domain

string enum, default: Materials & Products

Possible Enum Values

Materials & Products

Processing

Transport

Energy

Direct emissions

not_english

boolean, default: false

unit

string
GET
/api/metrics/search
1

Batch search for environmental metrics data

Submit up to 20 items and get top 10 DB matches per item using vector/TRGM similarity search. No LLM is used; results are returned directly.

Headers

Authorization

required, string

The Authorization header is used to authenticate with the API using your API key. Value is of the format Bearer YOUR_KEY_HERE.

X-Table-Filter

optional, string

Optional filter to restrict to a single underlying table (agribalyse | idemat | concito)

Request Body

items

required, array, maximum of 20 items, minimum of 1 items
POST
/api/metrics/batch_search
1
EXAMPLE BODY
{
  "items": [
    {
      "item_name": "cotton t-shirt",
      "year": "2022",
      "geography": "EU",
      "metric": "Carbon footprint",
      "domain": "Materials & Products"
    },
    {
      "item_name": "steel sheet",
      "year": "2021",
      "geography": "Global",
      "metric": "EF3.1 Score",
      "domain": "Materials & Products"
    }
  ]
}

MCP Server

Default MCP Server

Headers

Authorization

required, string

The Authorization header is used to authenticate with the API using your API key. Value is of the format Bearer YOUR_KEY_HERE.

POST
/mcp-server
1