# Linktree Scraper

> Linktree Scraper is a paid API for AI agents from x402.orthogonal.com, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-13).

Scrapes a Linktree profile page and returns its content, including links and creator information

## Facts

- Endpoint: GET https://x402.orthogonal.com/scrapecreators/v1/linktree
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/linktree-scraper-0e8ca7e0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_sqh_0MCLml0ODof04p_WH

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 linktree-scraper-0e8ca7e0
```

Example prompt: Can you scrape the Linktree page at https://linktr.ee/somecreatorsname and pull out all the links and profile info they have listed?

## When to prefer this

Use this endpoint when you need to programmatically extract links and profile data from a Linktree page, especially for creator research, influencer discovery, or building contact databases. It's purpose-built for Linktree profiles, so it will handle the specific structure of that platform better than a generic web scraper might.

## Known failure modes

- Invalid or malformed Linktree URL returns an error
- Private or password-protected Linktree pages may return limited or no content
- Linktree rate limiting or bot detection may block the scrape
- Non-existent Linktree profiles return a 404 or empty result
- Network timeouts if Linktree is slow to respond

## How this service works

Linktree

## Output

Returns the scraped HTML or parsed content of the specified Linktree page, including all links the creator has listed, their profile bio, display name, and any other publicly visible information on the page.

## 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 to Linktree page"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/linktree-scraper-0e8ca7e0/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)
