From b3daba30c88e15f9f97a2fb5a2910d30fe5a55f9 Mon Sep 17 00:00:00 2001 From: j-s Date: Wed, 10 Jun 2026 14:32:31 -0400 Subject: [PATCH 1/2] Add researcher-now (first-party): article/video analysis + deep research --- schemas/services.ts | 49 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 49 insertions(+) diff --git a/schemas/services.ts b/schemas/services.ts index d4849f74..a84f3421 100644 --- a/schemas/services.ts +++ b/schemas/services.ts @@ -1709,6 +1709,55 @@ export const services: ServiceDef[] = [ ], }, + // ── researcher-now ──────────────────────────────────────────────────────── + { + id: "researcher-now", + name: "researcher-now", + url: "https://researcher.now", + serviceUrl: "https://researcher.now", + description: + "Article and video analysis plus deep research for agents — formatted content with structured claims, facts, and quotes; multi-source cited Research Reports. Pay per call, no signup.", + + categories: ["ai", "search", "data"], + integration: "first-party", + tags: [ + "research", + "deep-research", + "youtube-transcript", + "article-analysis", + "video-analysis", + "reports", + "evidence", + ], + status: "active", + docs: { + homepage: "https://researcher.now/agent/", + llmsTxt: "https://researcher.now/llms.txt", + apiReference: "https://researcher.now/openapi.json", + }, + provider: { name: "Researcher", url: "https://researcher.now" }, + realm: "researcher.now", + intent: "charge", + payments: [TEMPO_PAYMENT], + endpoints: [ + { + route: "POST /v1/analyze", + desc: "Article or video analysis — formatted content plus structured claims, facts, and quotes", + amount: "50000", + unitType: "request", + }, + { + route: "POST /v1/runs", + desc: "Deep research — cited Research Report from a multi-source corpus", + intent: "session", + dynamic: true, + amountHint: "$1 – $25 by depth", + }, + { route: "GET /v1/library/search", desc: "Recall prior research — claims and evidence with citations" }, + { route: "POST /v1/keys/trial", desc: "Free trial key — 10 analyze calls" }, + ], + }, + // ── StableEmail ──────────────────────────────────────────────────────── { id: "stableemail", From d5fe4796e4de6eb5168ce5de01403ae90b805f34 Mon Sep 17 00:00:00 2001 From: j-s Date: Wed, 10 Jun 2026 15:07:04 -0400 Subject: [PATCH 2/2] researcher-now: note session payment support on /v1/analyze --- schemas/services.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/schemas/services.ts b/schemas/services.ts index a84f3421..8c162313 100644 --- a/schemas/services.ts +++ b/schemas/services.ts @@ -1742,7 +1742,7 @@ export const services: ServiceDef[] = [ endpoints: [ { route: "POST /v1/analyze", - desc: "Article or video analysis — formatted content plus structured claims, facts, and quotes", + desc: "Article or video analysis — formatted content plus structured claims, facts, and quotes. Also accepts session payments for repeat callers (deposit once, $0.05 deducted per call).", amount: "50000", unitType: "request", },