# Linkbio Page Scraper

> Linkbio Page 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-15).

Scrapes a Linkbio (lnk.bio) page and returns its structured creator profile data

## Facts

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

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 linkbio-page-scraper-757181ef
```

Example prompt: Can you scrape the linkbio page at lnk.bio/johndoe and pull out all the links and profile info listed there?

## When to prefer this

Use this endpoint when you need to programmatically extract a creator's full set of linked resources from their lnk.bio landing page. It is purpose-built for Linkbio/lnk.bio pages specifically, making it more reliable than a generic web scraper for this format. Ideal for influencer research, creator outreach automation, and enriching creator profiles with their self-reported social links and contact information.

## Known failure modes

- Invalid or malformed lnk.bio URL returns an error
- Private or deleted Linkbio profiles may return empty or error responses
- Rate limiting or blocking by lnk.bio could cause failed scrapes
- Non-lnk.bio URLs passed as input may return unexpected results or errors
- Network timeouts if the target page is slow to respond

## How this service works

Linkbio

## Output

Returns scraped content from the specified Linkbio (lnk.bio) page, including the creator's listed links, social media profile URLs, bio text, and other profile information displayed on the landing 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 Linkbio (lnk.bio) page"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/linkbio-page-scraper-757181ef/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)
