ICAO CEC v13.1 CO₂ per passenger — the methodology recommended by GHG Protocol for Scope 3 Category 6 business travel reporting. Cabin comparison, EU ETS offset pricing, and route map in a single POST. MCP-ready for AI agents.
One API call instead of four separate vendors. Used by travel apps, ESG platforms, and enterprise reporting pipelines alike.
ICAO v13.1
Methodology
Scope 3 Cat. 6
GHG Protocol methodology
1 call
CO₂ + offset + map
MCP-ready
Native AI agents
The problem
To turn a single flight into a complete user experience, developers have had to license, implement, and keep four separate third-party APIs in sync.
A different vendor, different auth, different data model — no methodology transparency, no standard compliance guarantee.
Airline logos from yet another provider, manual IATA code matching, inconsistent image formats and update cycles.
Route maps as a third service, with its own pricing model, rate limits, and SLA to manage.
No language model can query real-time CO₂ data directly — you write middleware you never wanted to maintain.
The solution
ICAO-certified CO₂ calculation, cabin comparison, EU ETS offset pricing, and route map — bundled into a single POST request.
Real aircraft performance data from the ICAO database, correct load factor, and Y-seat allocation across all four cabin classes. GHG Protocol Scope 3 compliant — the same standard airlines use for CORSIA and EU ETS reporting.
FRA → JFK · Airbus A350-900 · per passenger
Economy
461 kg
1.0×
Prem. Eco
738 kg
1.6×
Business
1,844 kg
4.0×
First
2,767 kg
6.0×
Economy, Premium Economy, Business, and First — returned in a single call. No second request, no manual multiplication.
Route map PNG, airline brand colors for your CSS, and EU ETS offset price — all in the same response. No extra calls.
route_map_url → embed-ready PNG
primary_hex → "#05164D"
secondary_hex → "#FFFFFF"
offset_eur → 31.53
MCP Server for Claude, GPT, and other LLMs. Your agent extracts flight details from free text and calls /v1/carbon autonomously.
Every response includes a 0–1 confidence value. Show users transparently whether exact aircraft data or a fleet-average fallback was used.
Ready for the AI era
Building a travel concierge, a booking bot, or autonomous logistics agents? With our Aviation MCP Server, logostream becomes a direct plug-and-play data layer for Claude, GPT, and any other LLM.
A user asks: "How much CO₂ does the Emirates A380 to Dubai produce in Business?" — the agent extracts airline, aircraft, and route, autonomously calls /v1/carbon, and responds with numbers, a route map, and offset price. Zero middleware from you.
User
"How much CO₂ does the Emirates A380 to Dubai produce in Business?"
Agent response
Emirates A380, Dubai (DXB), Business Class:
2,310 kg CO₂ · Offset: €158
ICAO CEC v13.1 · confidence 0.96
Live Demo
FRA → JFK · Economy · Airbus A350-900
// POST /v1/carbon
{
"from": "FRA",
"to": "JFK",
"cabin_class": "economy",
"passengers": 1,
"aircraft": "A359"
}
// Response
{
"status": "ok",
"confidence_score": 0.94,
"parsed_data": {
"route": {
"origin": { "iata": "FRA", "city": "Frankfurt", "country_code": "DE" },
"destination": { "iata": "JFK", "city": "New York", "country_code": "US" },
"distance_km": 6197
},
"aircraft": { "icao_mapped_type": "A359", "fallback_used": false }
},
"sustainability_metrics": {
"methodology": "ICAO CEC v13.1",
"rfi_factor": 1.9,
"passenger_footprint": {
"cabin_class": "economy",
"co2_kg": 461,
"co2_with_rfi_kg": 876
},
"cabin_comparison": {
"economy": { "co2_kg": 461, "yseat_factor": 1.0 },
"premium_economy": { "co2_kg": 738, "yseat_factor": 1.6 },
"business": { "co2_kg": 1844, "yseat_factor": 4.0 },
"first": { "co2_kg": 2767, "yseat_factor": 6.0 }
},
"carbon_offset": {
"per_passenger": { "co2_only_eur": 31.53, "with_rfi_eur": 59.91 }
}
},
"visual_assets": {
"route_map_url": "https://aviation-api.logostream.dev/v1/map/route?from=FRA&to=JFK",
"ui_branding": { "primary_hex": "#05164D", "secondary_hex": "#FFFFFF" }
}
}# Direct API call (structured input)
curl -X POST https://aviation-api.logostream.dev/v1/carbon \
-H "x-api-key: YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"from": "FRA",
"to": "JFK",
"cabin_class": "economy",
"passengers": 1,
"aircraft": "A359"
}'Why logostream
Replace four separate third-party APIs — CO₂ calculator, logo provider, map service, and offset price feed — with one complete solution. No manual IATA matching, no sync bugs, no version mismatches across vendors.
ICAO CEC v13.1 is the internationally recognised standard for Scope 3 Category 6 business travel reporting. Your B2B customers can feed the data directly into their ESG audits.
Performance data from the ICAO aircraft database — not generic averages. Specific fuel burn, range characteristics, and load factors per aircraft type.
Live-refreshed EU ETS carbon price converted to per-passenger EUR offset cost. Economy and with-RFI variants both included.
Pass an array of intermediate IATA codes. The API calculates each leg independently and returns per-leg CO₂ plus route totals.
FAQ
Egal ob Reise-App, Flughafen-Dashboard oder KI-Chatbot — mit logostream baust du in Minuten, wofür andere Monate brauchen. Free Tier: 1.000 Berechnungen/Monat, keine Kreditkarte.