# Blog Post Author Email Finder

> Blog Post Author Email Finder is a paid API for AI agents from x402.orthogonal.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Finds the email address of a blog post or article author given the article's URL.

## Facts

- Endpoint: GET https://x402.orthogonal.com/tomba/v1/author-finder
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/blog-post-author-email-finder-2e8bdcb2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ymTwfjFIdopV79tqlmyOO

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability blog-post-author-email-finder-2e8bdcb2
```

Example prompt: Can you find the email address of the author who wrote this article: https://techcrunch.com/2024/01/15/openai-raises-new-funding/?

## When to prefer this

Use this endpoint when you have a specific article or blog post URL and need to find the author's email for outreach, collaboration, licensing, or PR purposes. Prefer this over generic email-finding tools when you are starting from a content URL rather than a person's name or company domain.

## Known failure modes

- Article URL not indexed or author metadata not available — returns empty result
- Invalid or malformed URL input — returns error
- Author email not publicly discoverable — returns no results
- Paywalled or JavaScript-rendered pages may not be parseable
- Rate limiting or payment failure at $0.01 per call

## How this service works

Find the email address of a blog post author from the article URL.

## Output

Returns the email address(es) associated with the author of the given article or blog post URL, likely including the author's name and confidence signals about the email match, sourced via Tomba's author-finder service.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "url": {
       "type": "string",
       "description": "URL of the blog post/article"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/blog-post-author-email-finder-2e8bdcb2/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.orthogonal.com](https://www.zero.xyz/host/x402.orthogonal.com/llms.txt)
