From 7913768ea61fa49f9e5d587202a4c13d198ac208 Mon Sep 17 00:00:00 2001 From: Avirath Sundaresan Date: Fri, 11 Sep 2026 15:47:09 -0700 Subject: [PATCH] feat(services): add Talarion Talarion serves MPP natively on api.talarion.com: POST /v1/search at a flat $0.002 per call, and POST /v1/fetch quoted per document returned at $0.05. Both are tempo/charge in USDC.e on mainnet (chain 4217) through the hosted relay. Adds public/icons/talarion.svg in their house format (512x512, rx=64 ground in #2A2A2A, mark in #E8E8EC). --- public/icons/talarion.svg | 1 + schemas/services.ts | 39 +++++++++++++++++++++++++++++++++++++++ 2 files changed, 40 insertions(+) create mode 100644 public/icons/talarion.svg diff --git a/public/icons/talarion.svg b/public/icons/talarion.svg new file mode 100644 index 00000000..fae4ec54 --- /dev/null +++ b/public/icons/talarion.svg @@ -0,0 +1 @@ + diff --git a/schemas/services.ts b/schemas/services.ts index bd133cac..bd1d74be 100644 --- a/schemas/services.ts +++ b/schemas/services.ts @@ -11227,4 +11227,43 @@ export const services: ServiceDef[] = [ }, ], }, + // ── Talarion ─────────────────────────────────────────────────────────── + { + id: "talarion", + name: "Talarion", + url: "https://talarion.com", + serviceUrl: "https://api.talarion.com", + description: + "A knowledge base of verified, dated facts your LLM would otherwise get wrong. Built for AI apps that are world-state dependent.", + categories: ["search", "ai"], + integration: "first-party", + tags: ["search", "facts", "news", "archive", "point-in-time"], + status: "active", + docs: { + homepage: "https://docs.talarion.com", + apiReference: "https://docs.talarion.com/search", + llmsTxt: "https://talarion.com/llms.txt", + }, + provider: { name: "Talarion", url: "https://talarion.com" }, + realm: "api.talarion.com", + intent: "charge", + payments: [TEMPO_PAYMENT], + endpoints: [ + { + route: "POST /v1/search", + desc: "Search question in, verified dated facts with sources out", + amount: "2000", + unitType: "request", + docs: "https://docs.talarion.com/search", + }, + { + route: "POST /v1/fetch", + desc: "Archived text of up to 20 URLs, as of any date", + dynamic: true, + amountHint: "$0.05 per document returned", + unitType: "document", + docs: "https://docs.talarion.com/fetch", + }, + ], + }, ];