Loading...
BETA – We are refining the platform. Your feedback helps us improve. Share feedback
Loading...
Structured Scope 3 supplier readiness data for procurement platforms, ESG tools, and AI agents.
Query supplier readiness scores programmatically. Look up individual organisations, search by sector and region, or access aggregate statistics. Designed for integration into procurement workflows, ESG reporting tools, and AI-powered supply chain analysis.
No authentication required
Free tier works immediately. No API key needed.
100 requests/day
Free tier rate limit. CORS enabled for browser use.
Live data
Scores calculated from real-time org data.
https://www.citableesg.com/api/v1All endpoints return JSON. Rate limit headers (X-RateLimit-Limit, X-RateLimit-Remaining) are included in every response.
Look up a single organisation's Scope 3 Supplier Readiness score by slug.
GET /api/v1/supplier-readiness/{slug}curl https://www.citableesg.com/api/v1/supplier-readiness/the-ethical-agency{
"organisation": {
"name": "The Ethical Agency",
"slug": "the-ethical-agency",
"country": "United Kingdom",
"region": "europe",
"isVerified": true,
"profileUrl": "https://www.citableesg.com/org/the-ethical-agency"
},
"readiness": {
"score": 79,
"level": "ready",
"label": "Scope 3 Ready",
"passed": 11,
"total": 14,
"checks": [
{ "label": "Emissions data reported", "category": "emissions", "passed": true },
{ "label": "Third-party emissions assurance", "category": "emissions", "passed": true },
{ "label": "SBTi-aligned targets", "category": "emissions", "passed": false },
...
]
},
"lastUpdated": "2026-04-15T14:30:00.000Z"
}| Field | Type | Description |
|---|---|---|
| readiness.score | number | 0–100 percentage score |
| readiness.level | string | "ready" (75%+) | "partial" (40–74%) | "not_ready" (<40%) |
| readiness.checks | array | 14 individual check results with category and pass/fail |
| lastUpdated | ISO 8601 | When the organisation last updated their profile |
Find suppliers filtered by sector, region, country, minimum score, or readiness level.
GET /api/v1/supplier-readiness/search| Parameter | Type | Description |
|---|---|---|
| sector | string | Filter by sector (e.g. "manufacturing", "built_environment") |
| region | string | Filter by region (e.g. "europe", "asia_pacific") |
| country | string | Filter by country name (case-insensitive) |
| minScore | number | Minimum readiness score (0–100) |
| level | string | "ready" | "partial" | "not_ready" |
| page | number | Page number (default: 1) |
| limit | number | Results per page (1–50, default: 20) |
curl "https://www.citableesg.com/api/v1/supplier-readiness/search?sector=manufacturing&level=ready&limit=10"{
"results": [
{
"name": "The Ethical Agency",
"slug": "the-ethical-agency",
"country": "United Kingdom",
"region": "europe",
"isVerified": true,
"profileUrl": "https://www.citableesg.com/org/the-ethical-agency",
"score": 86,
"level": "ready",
"label": "Scope 3 Ready",
"passed": 12,
"total": 14
},
...
],
"total": 47,
"page": 1,
"limit": 10,
"totalPages": 5
}Get platform-wide readiness statistics broken down by sector.
GET /api/v1/supplier-readiness/stats{
"totalOrganisations": 2450,
"readyCount": 312,
"partialCount": 890,
"notReadyCount": 1248,
"averageScore": 42,
"bySector": {
"manufacturing": { "count": 340, "readyCount": 67, "avgScore": 48 },
"built_environment": { "count": 215, "readyCount": 41, "avgScore": 45 },
...
}
}Resolve a vendor's email domain to a canonical Citable ESG Orgs. profile. Designed for procurement systems that want to validate a counterparty's ESG identity from their work-email address.
GET /api/v1/organisations/lookup?domain={example.com}curl "https://www.citableesg.com/api/v1/organisations/lookup?domain=patagonia.com"{
"data": {
"slug": "patagonia",
"name": "Patagonia",
"tagline": "We're in business to save our home planet.",
"website": "https://www.patagonia.com",
"country": "United States",
"sectors": ["apparel", "outdoor_recreation"],
"services": [],
"sdgs": [12, 13, 14, 15],
"isVerified": true,
"profileCompleteness": 87,
"profileUrl": "https://www.citableesg.com/org/patagonia",
"schemaJsonLdUrl": "https://www.citableesg.com/api/v1/organisations/patagonia/schema.jsonld",
"updatedAt": "2026-05-19T..."
},
"matchType": "exact",
"query": { "domain": "patagonia.com" }
}Matches use exact or suffixstrategy against the org's registered website host. Returns 404 if no claimed org matches the domain.
The canonical Organization schema.org blob for an org, served as a standalone JSON-LD document. Procurement / reporting platforms and AI agents that consume structured data should call this endpoint directly rather than scraping the HTML profile page.
GET /api/v1/organisations/{slug}/schema.jsonldcurl https://www.citableesg.com/api/v1/organisations/patagonia/schema.jsonldResponse is content-typed application/ld+json (the canonical JSON-LD MIME). Cached 15 min at the edge. Fields included: name, url, sameAs, address, sectors, services, sdgs, credentials, memberships, climate targets. Page-only ornamentation (aggregate-rating, AI Citability Score) is intentionally dropped – fetch the HTML profile page for the full marketing view.
| Tier | Requests/day | Authentication | Price |
|---|---|---|---|
| Free | 100 | None (IP-based) | Free |
| Professional | 10,000 | API key | Coming soon |
| Enterprise | Unlimited | API key + webhooks | Coming soon |
Rate limit status is returned in response headers. When the limit is exceeded, the API returns 429 Too Many Requests with a Retry-After header.
| Status | Meaning |
|---|---|
| 200 | Success |
| 404 | Organisation not found |
| 429 | Rate limit exceeded |
| 500 | Server error |
All errors return JSON: { "error": "description" }
Enrich supplier profiles with Scope 3 readiness scores. Filter and rank suppliers by readiness level during RFQ evaluation.
Pull supplier readiness data into Scope 3 reporting workflows. Identify which suppliers can provide structured emissions data and which need engagement.
AI systems can query supplier readiness in real time to answer supply chain ESG questions with structured data rather than web scraping.
Claim your free profile on Citable ESG to make your Scope 3 readiness score available to procurement platforms and AI systems worldwide.