MPPtempoquality 0.88

Find web pages similar to any URL via Exa, pay-per-request at $0.01 through StableEnrich

Price
$0.01 / call
Protocol
mpp
Verified
no

What it does

This endpoint wraps the Exa "Find Similar" API through StableEnrich, a pay-per-request research gateway. Given a URL, it returns a list of semantically similar web pages ranked by relevance. The endpoint accepts a required `url` parameter and an optional `numResults` (1–100, default 5). Additional filtering is available via `includeDomains`, `excludeDomains`, date range filters (`startCrawlDate`, `endCrawlDate`, `startPublishedDate`, `endPublishedDate`), and text inclusion/exclusion arrays. A `contents` object lets you request full text, highlights, summaries, subpages, and extras like outbound links.

Pricing is $0.01 per request (fixed, in USD). Payment is handled via the MPP protocol using the Tempo method (pathUSD on Tempo L2) or x402 on Base mainnet. No API keys or subscriptions are required — payment itself serves as authentication. The endpoint is a POST at `https://stableenrich.dev/api/exa/find-similar`.

The response includes an array of result objects, each containing `title`, `url`, `publishedDate`, `author`, `score`, and optionally `text`, `highlights`, `summary`, `subpages`, and `extras`. A `costDollars` field reports the Exa-side cost. The full OpenAPI 3.1 schema is published with complete request and response definitions. StableEnrich is operated by Merit Systems and supports Base, Solana, and Tempo settlement networks.

Capabilities

similar-page-discoverysemantic-web-searchurl-similaritydomain-filteringdate-range-filteringtext-inclusion-exclusioncontent-extractionhighlight-extractionsummary-generationsubpage-crawlingpay-per-requestmpp-tempox402-base

Use cases

  • Discovering competitor websites by providing a known company URL
  • Finding research papers or articles similar to a reference page
  • Building a list of similar blogs or personal sites for outreach
  • Expanding a seed list of companies in a specific niche
  • Identifying alternative news sources covering similar topics

Fit

Best for

  • Agents that need to expand a known URL into a set of related pages
  • Competitive intelligence workflows starting from a single domain
  • Research pipelines that fan out from a seed URL to discover similar content

Not for

  • Keyword-based web search (use /api/exa/search instead)
  • Scraping full page content from known URLs (use /api/exa/contents or /api/firecrawl/scrape)
  • Real-time monitoring or streaming use cases

Quick start

POST https://stableenrich.dev/api/exa/find-similar
Content-Type: application/json

{"url": "https://openai.com", "numResults": 5}

Example

Request

{
  "url": "https://openai.com",
  "contents": {
    "text": true,
    "summary": {
      "query": "AI research lab"
    }
  },
  "numResults": 5,
  "includeDomains": [
    "anthropic.com",
    "deepmind.google"
  ]
}

Response

{
  "results": [
    {
      "id": "result_001",
      "url": "https://anthropic.com",
      "text": "Anthropic is an AI safety company...",
      "score": 0.95,
      "title": "Anthropic",
      "author": null,
      "summary": "AI research lab focused on safety",
      "publishedDate": "2024-01-15"
    },
    {
      "id": "result_002",
      "url": "https://deepmind.google",
      "text": "DeepMind is a world leader in AI research...",
      "score": 0.89,
      "title": "Google DeepMind",
      "author": null,
      "summary": "AI research division of Google",
      "publishedDate": "2024-02-10"
    }
  ],
  "requestId": "abc123",
  "costDollars": {
    "total": 0.01
  }
}

Endpoint

Transporthttp
Protocolmpp
CurrencypathUSD

Quality

0.88/ 1.00

Full OpenAPI 3.1 schema with complete request/response definitions and clear pricing ($0.01/request). The probe returned 405 on HEAD/GET which is expected since this is a POST-only endpoint. Comprehensive documentation is available in the guidance field. No live 402 challenge was captured for this specific endpoint, but the OpenAPI x-payment-info confirms pricing and protocols.

Warnings

  • Probe returned 405 because HEAD/GET were tried on a POST-only endpoint; this does not indicate the endpoint is down
  • No direct 402 challenge was captured for this endpoint during probing

Citations

Provenance

Indexed frommpp_dev
Enriched2026-04-19 16:16:13Z · anthropic/claude-opus-4.6 · v2
First seen2026-04-18
Last seen2026-04-22

Agent access