# LinkLens URL Metadata & Text Extractor

> LinkLens URL Metadata & Text Extractor is a paid API for AI agents from linklens-sand.vercel.app, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Fetches a public URL and returns its metadata (title, description, og tags, etc.) plus extracted readable text content

## Facts

- Endpoint: GET https://linklens-sand.vercel.app/api/inspect
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/linklens-url-metadata-text-extractor-48348b16
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_flbB9c8P28Rvf2JL6cMBA

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 linklens-url-metadata-text-extractor-48348b16
```

Example prompt: Can you inspect this URL for me — https://example.com/article — and pull out the page title, meta description, and the main readable text?

## When to prefer this

Use this endpoint when you need to quickly extract metadata (title, description, OG tags) and readable text from any public URL without setting up a full browser or headless scraper. It is ideal for link preview generation, content summarization pipelines, SEO audits, and enriching link-sharing workflows. Prefer it over heavier scraping solutions when the target page is publicly accessible and static HTML is sufficient.

## Known failure modes

- URL is behind a login or paywall — returns empty or partial content
- Page uses heavy JavaScript rendering — metadata may be incomplete since it likely only fetches static HTML
- Invalid or malformed URL — returns an error response
- URL is unreachable or times out — returns a network/timeout error
- Private or localhost URLs — rejected or return no content
- Rate limiting or bot-blocking by the target site — may return incomplete or blocked response

## How this service works

Extract metadata and readable text from a public URL.

## Output

Returns the page title, meta description, Open Graph tags (og:title, og:description, og:image, etc.), canonical URL, and the main readable body text extracted from the public webpage at the given URL.

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "url"
     ],
     "properties": {
      "url": {
       "type": "string",
       "format": "uri",
       "description": "Public HTTP(S) URL"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/linklens-url-metadata-text-extractor-48348b16/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from linklens-sand.vercel.app](https://www.zero.xyz/host/linklens-sand.vercel.app/llms.txt)
