Extract page metadata
Extract page metadata: title, description, keywords, author, published/modified dates, canonical, language, favicon, and OpenGraph/Twitter card tags.
Answeringour last check, 2026-09-24
1 of 1checks answered this week
1466 msmedian answer time
$0.002listed price per call
$0.002price it asked us
Paid test badge: not yet. The checks above are free: we call the tool without paying and read the payment request it sends back. The Verified badge needs paid calls whose answers match the promised output, and nobody can buy a badge.
Endpoint
POST https://web-scraper-api-production-bf20.up.railway.app/scrape/metadata
| Category | Search and research |
|---|---|
| Provider host | web-scraper-api-production-bf20.up.railway.app |
| Networks | eip155:8453 |
| Payment schemes | exact |
| Self-reported calls, 30 days | 4 from 4 payers (the provider's figure, not ours) |
Our checks, last 30 days
| Day | Result | HTTP | Asked | Time |
|---|---|---|---|---|
| 2026-09-24 | valid payment request | 402 | $0.002 | 1466 ms |
Example input (from the provider)
{
"body": {
"url": "https://example.com"
},
"bodyType": "json",
"method": "POST",
"type": "http"
}
Promised output schema (from the provider)
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"properties": {
"url": {
"description": "Absolute http(s) URL of the page to scrape, e.g. 'https://example.com'.",
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
},
"bodyType": {
"enum": [
"json",
"form-data",
"text"
],
"type": "string"
},
"method": {
"enum": [
"POST",
"PUT",
"PATCH"
],
"type": "string"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"properties": {
"author": {
"type": [
"string",
"null"
]
},
"canonical": {
"type": [
"string",
"null"
]
},
"description": {
"type": [
"string",
"null"
]
},
"favicon": {
"type": [
"string",
"null"
]
},
"final_url": {
"type": "string"
},
"keywords": {
"type": [
"string",
"null"
]
},
"language": {
"type": [
"string",
"null"
]
},
"modified": {
"type": [
"string",
"null"
]
},
"open_graph": {
"description": "OpenGraph tags: title, description, image, url, type, site_name.",
"type": "object"
},
"published": {
"type": [
"string",
"null"
]
},
"title": {
"type": [
"string",
"null"
]
},
"twitter": {
"description": "Twitter card tags: card, title, description, image, site, creator.",
"type": "object"
},
"url": {
"type": "string"
}
},
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}