← Back to search
70
Agent Ready
Agentic Readiness Score
+25 llms.txt +20 OpenAPI missing +20 ai-plugin
security llms-txtopenapiapiai-friendlyaistorage

Agentic Signals

📄
Found
🤖
ai-plugin.json
Not found
📖
OpenAPI Spec
Found
🔗
Structured API
Found
🏷
Schema.org Markup
Found
MCP Server
Not found

Embed this badge

Show off your agentic readiness — the badge auto-updates when your score changes.

Agentic Ready 70/100

            

llms.txt Content

# TracePass — AI-Powered Digital Product Passport Platform (EU Compliance) # https://www.tracepass.eu # Last updated: 2026-06-10 (agent quickstart added) # Supported locales: en (default), bg, de, it — every page below has localised variants under /bg, /de, /it ## Agent quickstart (for AI agents acting on a user's behalf) TracePass exposes a public REST API. Base URL: `https://app.tracepass.eu`. Two auth methods: an API key (prefix `tp_`) as a Bearer token for server-to-server use, or OAuth 2.0 with PKCE for user-authorized third-party apps and AI assistants. Full reference + OpenAPI 3.1 spec: https://www.tracepass.eu/docs (download: https://www.tracepass.eu/openapi.yaml). ```bash # Create a product (write actions are idempotent via Idempotency-Key). # `category` is a seeded slug (batteries, textiles, electronics, jewelry, …) and picks the template. curl -X POST https://app.tracepass.eu/api/v1/products \ -H "Authorization: Bearer tp_your_key" \ -H "Idempotency-Key: $(uuidgen)" \ -H "Content-Type: application/json" \ -d '{"name":"Li-Ion 48V Battery Pack","model":"BP-48V-100","category":"batteries"}' # Fetch a passport as JSON-LD curl https://app.tracepass.eu/api/v1/passports/{id} \ -H "Authorization: Bearer tp_your_key" -H "Accept: application/ld+json" ``` Every published passport resolves at a GS1 Digital Link URL: `https://id.tracepass.eu/p/01/<GTIN>/21/<serial>` (HTML for humans, JSON-LD under `Accept: application/ld+json`). Rate limits are workspace-wide daily counters, not per-endpoint: Free 100/day, Basic 200/day, Starter and above unlimited (writes and passport-reads metered separately). MCP server (for Claude / Cursor / IDE agents) and a free n8n community node are available — see https://www.tracepass.eu/integrations. Machine-readable entity + capability card: https://www.tracepass.eu/.well-known/ai-overview.json — the canonical Organization (legalName TracePass LTD, Bulgarian UIC 208790302, EU VAT BG208790302, EU PIC 863746977, Wiki

OpenAPI Spec (preview)

# TracePass v1 API — OpenAPI 3.1 specification # --------------------------------------------------------------------- # Hand-written, cross-checked against the platform's Zod schemas in # src/lib/validation/schemas.ts and the route handlers under # src/app/api/v1/. Authoritative reference for every public endpoint # TracePass exposes; the prose docs at https://www.tracepass.eu/docs # wrap the same vocabulary in a more readable form. # # Format conventions: # - All v1 endpoints require an AP