SEO Data Scraper API
Overview
To use SEO Data Scraper, you need an API key. You can get one by creating a free account and visiting your dashboard.
POST Endpoint
https://api.apiverve.com/v1/seoscraperExample
How to call the SEO Data Scraper API in different programming languages.
curl -X POST \
"https://api.apiverve.com/v1/seoscraper" \
-H "X-API-Key: your_api_key_here" \
-H "Content-Type: application/json" \
-d '{
"url": "https://apiverve.com"
}'const response = await fetch('https://api.apiverve.com/v1/seoscraper', {
method: 'POST',
headers: {
'X-API-Key': 'your_api_key_here',
'Content-Type': 'application/json'
},
body: JSON.stringify({
"url": "https://apiverve.com"
})
});
const data = await response.json();
console.log(data);import requests
headers = {
'X-API-Key': 'your_api_key_here',
'Content-Type': 'application/json'
}
payload = {
"url": "https://apiverve.com"
}
response = requests.post('https://api.apiverve.com/v1/seoscraper', headers=headers, json=payload)
data = response.json()
print(data)package main
import (
"fmt"
"io"
"net/http"
"bytes"
"encoding/json"
)
func main() {
payload := map[string]interface{}{
"url": "https://apiverve.com"
}
jsonPayload, _ := json.Marshal(payload)
req, _ := http.NewRequest("POST", "https://api.apiverve.com/v1/seoscraper", bytes.NewBuffer(jsonPayload))
req.Header.Set("X-API-Key", "your_api_key_here")
req.Header.Set("Content-Type", "application/json")
client := &http.Client{}
resp, err := client.Do(req)
if err != nil {
panic(err)
}
defer resp.Body.Close()
body, _ := io.ReadAll(resp.Body)
fmt.Println(string(body))
}{
"status": "ok",
"error": null,
"data": {
"requestUrl": "https://apiverve.com",
"url": "https://apiverve.com/",
"canonical": "https://apiverve.com",
"lang": "en",
"charset": "utf-8",
"title": "APIVerve - Fast, Scalable, and Reliable APIs",
"image": "",
"favicons": [
{
"rel": "icon",
"type": "image/x-icon",
"href": "/images/favicon.ico"
},
{
"rel": "icon",
"type": "image/png",
"href": "/images/favicon.png"
},
{
"rel": "apple-touch-icon",
"href": "/images/favicon.png"
}
],
"author": "APIVerve",
"description": "APIVerve offers fast, scalable, and reliable APIs for developers. Access data enrichment, validation, and integration services with enterprise-grade performance.",
"keywords": "API, developer tools, data enrichment, API integration, scalable APIs, reliable APIs",
"source": "",
"price": "",
"priceCurrency": "",
"availability": "",
"robots": "index, follow",
"jsonld": [
{
"@context": "https://schema.org",
"@type": "Organization",
"name": "APIVerve",
"url": "https://apiverve.com",
"logo": "https://apiverve.com/images/favicon.png",
"sameAs": [
"https://www.facebook.com/apiverve",
"https://www.twitter.com/apivervehq",
"https://www.linkedin.com/company/apiverve",
"https://github.com/apiverve",
"https://www.instagram.com/apiverve"
]
},
{
"@context": "https://schema.org",
"@type": "WebSite",
"url": "https://apiverve.com",
"potentialAction": {
"@type": "SearchAction",
"target": {
"@type": "EntryPoint",
"urlTemplate": "https://apiverve.com/marketplace?search={search_term_string}"
},
"query-input": "required name=search_term_string"
}
}
],
"og:url": "https://apiverve.com",
"og:locale": "",
"og:locale:alternate": "",
"og:title": "APIVerve - Fast, Scalable, and Reliable APIs",
"og:type": "website",
"og:description": "APIVerve offers fast, scalable, and reliable APIs for developers. Access data enrichment, validation, and integration services with enterprise-grade performance.",
"og:determiner": "",
"og:site_name": "APIVerve",
"og:image": "https://apiverve.com/images/posterImage.png",
"og:image:secure_url": "",
"og:image:type": "",
"og:image:width": "1200",
"og:image:height": "630",
"twitter:title": "APIVerve - Fast, Scalable, and Reliable APIs",
"twitter:description": "APIVerve offers fast, scalable, and reliable APIs for developers. Access data enrichment, validation, and integration services with enterprise-grade performance.",
"twitter:image": "https://apiverve.com/images/posterImage.png",
"twitter:image:alt": "",
"twitter:card": "summary_large_image",
"twitter:site": "",
"twitter:site:id": "",
"twitter:url": "",
"twitter:account_id": "",
"twitter:creator": "",
"twitter:creator:id": "",
"twitter:player": "",
"twitter:player:width": "",
"twitter:player:height": "",
"twitter:player:stream": "",
"twitter:app:name:iphone": "",
"twitter:app:id:iphone": "",
"twitter:app:url:iphone": "",
"twitter:app:name:ipad": "",
"twitter:app:id:ipad": "",
"twitter:app:url:ipad": "",
"twitter:app:name:googleplay": "",
"twitter:app:id:googleplay": "",
"twitter:app:url:googleplay": "",
"headings": [
{
"level": "h4",
"text": "API Platform"
},
{
"level": "h5",
"text": "Core Platform"
},
{
"level": "h5",
"text": "Developer Tools"
},
{
"level": "h5",
"text": "Integrations"
},
{
"level": "h4",
"text": "Solutions"
},
{
"level": "h5",
"text": "By Industry"
},
{
"level": "h5",
"text": "By Use Case"
},
{
"level": "h4",
"text": "Resources"
},
{
"level": "h5",
"text": "Learn & Build"
},
{
"level": "h5",
"text": "Support & Community"
},
{
"level": "h5",
"text": "Trust & Transparency"
},
{
"level": "h1",
"text": "Fast, Scalable, and Reliable |"
},
{
"level": "h2",
"text": "Trusted by over 40,000 forward thinking developers"
},
{
"level": "h2",
"text": "Why Developers Choose APIVerve"
},
{
"level": "h3",
"text": "⚡ Unmatched Reliability"
},
{
"level": "h3",
"text": "🔑 True One-Key Simplicity"
},
{
"level": "h3",
"text": "🌐 GraphQL & Mocking"
},
{
"level": "h2",
"text": "Most Popular APIs"
},
{
"level": "h3",
"text": "Daily API Performance"
},
{
"level": "h2",
"text": "Trusted by Developers Worldwide"
},
{
"level": "h4",
"text": "Tomasz K."
},
{
"level": "h4",
"text": "Priya M."
},
{
"level": "h4",
"text": "Rafael S."
},
{
"level": "h2",
"text": "Native SDKs & Libraries"
},
{
"level": "h4",
"text": "JavaScript/TypeScript"
},
{
"level": "h4",
"text": "React"
},
{
"level": "h4",
"text": "Vue.js"
},
{
"level": "h4",
"text": "Angular"
},
{
"level": "h4",
"text": "Node.js"
},
{
"level": "h4",
"text": "Next.js"
},
{
"level": "h2",
"text": "Frequently Asked Questions"
},
{
"level": "h3",
"text": "How much usage is included with the Free Trial plan?"
},
{
"level": "h3",
"text": "How do I get an API Key?"
},
{
"level": "h3",
"text": "How does APIVerve use my data?"
},
{
"level": "h3",
"text": "Can I change my plan at any time?"
},
{
"level": "h3",
"text": "How do I know my plan usage?"
},
{
"level": "h3",
"text": "Can I cancel my plan anytime?"
},
{
"level": "h3",
"text": "Where can I find my invoices?"
},
{
"level": "h3",
"text": "What are your accepted payment methods?"
},
{
"level": "h3",
"text": "What happens when I go over the token limit for the month?"
},
{
"level": "h3",
"text": "What is a token?"
},
{
"level": "h3",
"text": "Do you offer student discounts?"
},
{
"level": "h2",
"text": "Ready to build something amazing?"
},
{
"level": "h3",
"text": "APIVerve"
},
{
"level": "h4",
"text": "Product"
},
{
"level": "h4",
"text": "Integrations"
},
{
"level": "h4",
"text": "Solutions"
},
{
"level": "h4",
"text": "Resources"
},
{
"level": "h4",
"text": "Compare"
},
{
"level": "h4",
"text": "SDKs"
},
{
"level": "h4",
"text": "Company"
},
{
"level": "h4",
"text": "Legal"
}
],
"imgTags": [
{
"src": "/images/favicon.png",
"alt": "APIVerve"
},
{
"src": "/images/wreath.svg",
"alt": "Award"
},
{
"src": "/images/brands/brand06.png",
"alt": "Postman"
},
{
"src": "/images/brands/brand01.png",
"alt": "Microsoft"
},
{
"src": "/images/brands/brand02.png",
"alt": "DuckDuckGo"
},
{
"src": "/images/brands/brand03.png",
"alt": "Topdanmark"
},
{
"src": "/images/brands/brand04.png",
"alt": "University of Maryland"
},
{
"src": "/images/brands/brand05.png",
"alt": "Postman"
},
{
"src": "/images/brands/brand06.png",
"alt": "RapidAPI"
},
{
"src": "/images/brands/brand07.png",
"alt": "Zapier"
},
{
"src": "/images/brands/brand08.svg",
"alt": "Brand"
},
{
"src": "/images/brands/brand01.png",
"alt": "Microsoft"
},
{
"src": "/images/brands/brand02.png",
"alt": "DuckDuckGo"
},
{
"src": "/images/brands/brand03.png",
"alt": "Topdanmark"
},
{
"src": "/images/brands/brand04.png",
"alt": "University of Maryland"
},
{
"src": "/images/brands/brand05.png",
"alt": "Postman"
},
{
"src": "/images/brands/brand06.png",
"alt": "RapidAPI"
},
{
"src": "/images/brands/brand07.png",
"alt": "Zapier"
},
{
"src": "/images/brands/brand08.svg",
"alt": "Brand"
},
{
"src": "/images/favicon.png",
"alt": "APIVerve"
}
],
"responseBody": "",
"viewport": "width=device-width, initial-scale=1,width=device-width, initial-scale=1",
"googlebot": "index, follow",
"theme-color": "#ffffff",
"application-name": "APIVerve",
"msapplication-TileColor": "#3b82f6",
"mobile-web-app-capable": "yes",
"apple-mobile-web-app-title": "APIVerve",
"apple-mobile-web-app-status-bar-style": "default",
"og:image:alt": "APIVerve - Fast, Scalable, and Reliable APIs"
}
}Authentication
The SEO Data Scraper API requires authentication via API key. Include your API key in the request header:
X-API-Key: your_api_key_hereInteractive API Playground
Test the SEO Data Scraper API directly in your browser with live requests and responses.
Parameters
The following parameters are available for the SEO Data Scraper API:
Scrape SEO Data
| Parameter | Type | Required | Description | Default | Example |
|---|---|---|---|---|---|
url | string | required | The URL of the web page to scrape SEO data from Format: url (e.g., https://www.nytimes.com) | - |
Response
The SEO Data Scraper API returns responses in JSON, XML, YAML, and CSV formats. The JSON response is shown in the Example section above; alternative formats below.
Other Response Formats
<?xml version="1.0" encoding="UTF-8"?>
<response>
<status>ok</status>
<error xsi:nil="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/>
<data>
<requestUrl>https://apiverve.com</requestUrl>
<url>https://apiverve.com/</url>
<canonical>https://apiverve.com</canonical>
<lang>en</lang>
<charset>utf-8</charset>
<title>APIVerve - Fast, Scalable, and Reliable APIs</title>
<image></image>
<favicons>
<favicon>
<rel>icon</rel>
<type>image/x-icon</type>
<href>/images/favicon.ico</href>
</favicon>
<favicon>
<rel>icon</rel>
<type>image/png</type>
<href>/images/favicon.png</href>
</favicon>
<favicon>
<rel>apple-touch-icon</rel>
<href>/images/favicon.png</href>
</favicon>
</favicons>
<author>APIVerve</author>
<description>APIVerve offers fast, scalable, and reliable APIs for developers. Access data enrichment, validation, and integration services with enterprise-grade performance.</description>
<keywords>API, developer tools, data enrichment, API integration, scalable APIs, reliable APIs</keywords>
<source></source>
<price></price>
<priceCurrency></priceCurrency>
<availability></availability>
<robots>index, follow</robots>
<jsonld>
<item>
<_context>https://schema.org</_context>
<_type>Organization</_type>
<name>APIVerve</name>
<url>https://apiverve.com</url>
<logo>https://apiverve.com/images/favicon.png</logo>
<sameAs>
<sameA>https://www.facebook.com/apiverve</sameA>
<sameA>https://www.twitter.com/apivervehq</sameA>
<sameA>https://www.linkedin.com/company/apiverve</sameA>
<sameA>https://github.com/apiverve</sameA>
<sameA>https://www.instagram.com/apiverve</sameA>
</sameAs>
</item>
<item>
<_context>https://schema.org</_context>
<_type>WebSite</_type>
<url>https://apiverve.com</url>
<potentialAction>
<_type>SearchAction</_type>
<target>
<_type>EntryPoint</_type>
<urlTemplate>https://apiverve.com/marketplace?search={search_term_string}</urlTemplate>
</target>
<query_input>required name=search_term_string</query_input>
</potentialAction>
</item>
</jsonld>
<og_url>https://apiverve.com</og_url>
<og_locale></og_locale>
<og_locale_alternate></og_locale_alternate>
<og_title>APIVerve - Fast, Scalable, and Reliable APIs</og_title>
<og_type>website</og_type>
<og_description>APIVerve offers fast, scalable, and reliable APIs for developers. Access data enrichment, validation, and integration services with enterprise-grade performance.</og_description>
<og_determiner></og_determiner>
<og_site_name>APIVerve</og_site_name>
<og_image>https://apiverve.com/images/posterImage.png</og_image>
<og_image_secure_url></og_image_secure_url>
<og_image_type></og_image_type>
<og_image_width>1200</og_image_width>
<og_image_height>630</og_image_height>
<twitter_title>APIVerve - Fast, Scalable, and Reliable APIs</twitter_title>
<twitter_description>APIVerve offers fast, scalable, and reliable APIs for developers. Access data enrichment, validation, and integration services with enterprise-grade performance.</twitter_description>
<twitter_image>https://apiverve.com/images/posterImage.png</twitter_image>
<twitter_image_alt></twitter_image_alt>
<twitter_card>summary_large_image</twitter_card>
<twitter_site></twitter_site>
<twitter_site_id></twitter_site_id>
<twitter_url></twitter_url>
<twitter_account_id></twitter_account_id>
<twitter_creator></twitter_creator>
<twitter_creator_id></twitter_creator_id>
<twitter_player></twitter_player>
<twitter_player_width></twitter_player_width>
<twitter_player_height></twitter_player_height>
<twitter_player_stream></twitter_player_stream>
<twitter_app_name_iphone></twitter_app_name_iphone>
<twitter_app_id_iphone></twitter_app_id_iphone>
<twitter_app_url_iphone></twitter_app_url_iphone>
<twitter_app_name_ipad></twitter_app_name_ipad>
<twitter_app_id_ipad></twitter_app_id_ipad>
<twitter_app_url_ipad></twitter_app_url_ipad>
<twitter_app_name_googleplay></twitter_app_name_googleplay>
<twitter_app_id_googleplay></twitter_app_id_googleplay>
<twitter_app_url_googleplay></twitter_app_url_googleplay>
<headings>
<heading>
<level>h4</level>
<text>API Platform</text>
</heading>
<heading>
<level>h5</level>
<text>Core Platform</text>
</heading>
<heading>
<level>h5</level>
<text>Developer Tools</text>
</heading>
<heading>
<level>h5</level>
<text>Integrations</text>
</heading>
<heading>
<level>h4</level>
<text>Solutions</text>
</heading>
<heading>
<level>h5</level>
<text>By Industry</text>
</heading>
<heading>
<level>h5</level>
<text>By Use Case</text>
</heading>
<heading>
<level>h4</level>
<text>Resources</text>
</heading>
<heading>
<level>h5</level>
<text>Learn & Build</text>
</heading>
<heading>
<level>h5</level>
<text>Support & Community</text>
</heading>
<heading>
<level>h5</level>
<text>Trust & Transparency</text>
</heading>
<heading>
<level>h1</level>
<text>Fast, Scalable, and Reliable |</text>
</heading>
<heading>
<level>h2</level>
<text>Trusted by over 40,000 forward thinking developers</text>
</heading>
<heading>
<level>h2</level>
<text>Why Developers Choose APIVerve</text>
</heading>
<heading>
<level>h3</level>
<text>⚡ Unmatched Reliability</text>
</heading>
<heading>
<level>h3</level>
<text>🔑 True One-Key Simplicity</text>
</heading>
<heading>
<level>h3</level>
<text>🌐 GraphQL & Mocking</text>
</heading>
<heading>
<level>h2</level>
<text>Most Popular APIs</text>
</heading>
<heading>
<level>h3</level>
<text>Daily API Performance</text>
</heading>
<heading>
<level>h2</level>
<text>Trusted by Developers Worldwide</text>
</heading>
<heading>
<level>h4</level>
<text>Tomasz K.</text>
</heading>
<heading>
<level>h4</level>
<text>Priya M.</text>
</heading>
<heading>
<level>h4</level>
<text>Rafael S.</text>
</heading>
<heading>
<level>h2</level>
<text>Native SDKs & Libraries</text>
</heading>
<heading>
<level>h4</level>
<text>JavaScript/TypeScript</text>
</heading>
<heading>
<level>h4</level>
<text>React</text>
</heading>
<heading>
<level>h4</level>
<text>Vue.js</text>
</heading>
<heading>
<level>h4</level>
<text>Angular</text>
</heading>
<heading>
<level>h4</level>
<text>Node.js</text>
</heading>
<heading>
<level>h4</level>
<text>Next.js</text>
</heading>
<heading>
<level>h2</level>
<text>Frequently Asked Questions</text>
</heading>
<heading>
<level>h3</level>
<text>How much usage is included with the Free Trial plan?</text>
</heading>
<heading>
<level>h3</level>
<text>How do I get an API Key?</text>
</heading>
<heading>
<level>h3</level>
<text>How does APIVerve use my data?</text>
</heading>
<heading>
<level>h3</level>
<text>Can I change my plan at any time?</text>
</heading>
<heading>
<level>h3</level>
<text>How do I know my plan usage?</text>
</heading>
<heading>
<level>h3</level>
<text>Can I cancel my plan anytime?</text>
</heading>
<heading>
<level>h3</level>
<text>Where can I find my invoices?</text>
</heading>
<heading>
<level>h3</level>
<text>What are your accepted payment methods?</text>
</heading>
<heading>
<level>h3</level>
<text>What happens when I go over the token limit for the month?</text>
</heading>
<heading>
<level>h3</level>
<text>What is a token?</text>
</heading>
<heading>
<level>h3</level>
<text>Do you offer student discounts?</text>
</heading>
<heading>
<level>h2</level>
<text>Ready to build something amazing?</text>
</heading>
<heading>
<level>h3</level>
<text>APIVerve</text>
</heading>
<heading>
<level>h4</level>
<text>Product</text>
</heading>
<heading>
<level>h4</level>
<text>Integrations</text>
</heading>
<heading>
<level>h4</level>
<text>Solutions</text>
</heading>
<heading>
<level>h4</level>
<text>Resources</text>
</heading>
<heading>
<level>h4</level>
<text>Compare</text>
</heading>
<heading>
<level>h4</level>
<text>SDKs</text>
</heading>
<heading>
<level>h4</level>
<text>Company</text>
</heading>
<heading>
<level>h4</level>
<text>Legal</text>
</heading>
</headings>
<imgTags>
<imgTag>
<src>/images/favicon.png</src>
<alt>APIVerve</alt>
</imgTag>
<imgTag>
<src>/images/wreath.svg</src>
<alt>Award</alt>
</imgTag>
<imgTag>
<src>/images/brands/brand06.png</src>
<alt>Postman</alt>
</imgTag>
<imgTag>
<src>/images/brands/brand01.png</src>
<alt>Microsoft</alt>
</imgTag>
<imgTag>
<src>/images/brands/brand02.png</src>
<alt>DuckDuckGo</alt>
</imgTag>
<imgTag>
<src>/images/brands/brand03.png</src>
<alt>Topdanmark</alt>
</imgTag>
<imgTag>
<src>/images/brands/brand04.png</src>
<alt>University of Maryland</alt>
</imgTag>
<imgTag>
<src>/images/brands/brand05.png</src>
<alt>Postman</alt>
</imgTag>
<imgTag>
<src>/images/brands/brand06.png</src>
<alt>RapidAPI</alt>
</imgTag>
<imgTag>
<src>/images/brands/brand07.png</src>
<alt>Zapier</alt>
</imgTag>
<imgTag>
<src>/images/brands/brand08.svg</src>
<alt>Brand</alt>
</imgTag>
<imgTag>
<src>/images/brands/brand01.png</src>
<alt>Microsoft</alt>
</imgTag>
<imgTag>
<src>/images/brands/brand02.png</src>
<alt>DuckDuckGo</alt>
</imgTag>
<imgTag>
<src>/images/brands/brand03.png</src>
<alt>Topdanmark</alt>
</imgTag>
<imgTag>
<src>/images/brands/brand04.png</src>
<alt>University of Maryland</alt>
</imgTag>
<imgTag>
<src>/images/brands/brand05.png</src>
<alt>Postman</alt>
</imgTag>
<imgTag>
<src>/images/brands/brand06.png</src>
<alt>RapidAPI</alt>
</imgTag>
<imgTag>
<src>/images/brands/brand07.png</src>
<alt>Zapier</alt>
</imgTag>
<imgTag>
<src>/images/brands/brand08.svg</src>
<alt>Brand</alt>
</imgTag>
<imgTag>
<src>/images/favicon.png</src>
<alt>APIVerve</alt>
</imgTag>
</imgTags>
<responseBody></responseBody>
<viewport>width=device-width, initial-scale=1,width=device-width, initial-scale=1</viewport>
<googlebot>index, follow</googlebot>
<theme_color>#ffffff</theme_color>
<application_name>APIVerve</application_name>
<msapplication_TileColor>#3b82f6</msapplication_TileColor>
<mobile_web_app_capable>yes</mobile_web_app_capable>
<apple_mobile_web_app_title>APIVerve</apple_mobile_web_app_title>
<apple_mobile_web_app_status_bar_style>default</apple_mobile_web_app_status_bar_style>
<og_image_alt>APIVerve - Fast, Scalable, and Reliable APIs</og_image_alt>
</data>
</response>
status: ok
error: null
data:
requestUrl: https://apiverve.com
url: https://apiverve.com/
canonical: https://apiverve.com
lang: en
charset: utf-8
title: APIVerve - Fast, Scalable, and Reliable APIs
image: ''
favicons:
- rel: icon
type: image/x-icon
href: /images/favicon.ico
- rel: icon
type: image/png
href: /images/favicon.png
- rel: apple-touch-icon
href: /images/favicon.png
author: APIVerve
description: >-
APIVerve offers fast, scalable, and reliable APIs for developers. Access
data enrichment, validation, and integration services with enterprise-grade
performance.
keywords: >-
API, developer tools, data enrichment, API integration, scalable APIs,
reliable APIs
source: ''
price: ''
priceCurrency: ''
availability: ''
robots: index, follow
jsonld:
- '@context': https://schema.org
'@type': Organization
name: APIVerve
url: https://apiverve.com
logo: https://apiverve.com/images/favicon.png
sameAs:
- https://www.facebook.com/apiverve
- https://www.twitter.com/apivervehq
- https://www.linkedin.com/company/apiverve
- https://github.com/apiverve
- https://www.instagram.com/apiverve
- '@context': https://schema.org
'@type': WebSite
url: https://apiverve.com
potentialAction:
'@type': SearchAction
target:
'@type': EntryPoint
urlTemplate: https://apiverve.com/marketplace?search={search_term_string}
query-input: required name=search_term_string
og:url: https://apiverve.com
og:locale: ''
og:locale:alternate: ''
og:title: APIVerve - Fast, Scalable, and Reliable APIs
og:type: website
og:description: >-
APIVerve offers fast, scalable, and reliable APIs for developers. Access
data enrichment, validation, and integration services with enterprise-grade
performance.
og:determiner: ''
og:site_name: APIVerve
og:image: https://apiverve.com/images/posterImage.png
og:image:secure_url: ''
og:image:type: ''
og:image:width: '1200'
og:image:height: '630'
twitter:title: APIVerve - Fast, Scalable, and Reliable APIs
twitter:description: >-
APIVerve offers fast, scalable, and reliable APIs for developers. Access
data enrichment, validation, and integration services with enterprise-grade
performance.
twitter:image: https://apiverve.com/images/posterImage.png
twitter:image:alt: ''
twitter:card: summary_large_image
twitter:site: ''
twitter:site:id: ''
twitter:url: ''
twitter:account_id: ''
twitter:creator: ''
twitter:creator:id: ''
twitter:player: ''
twitter:player:width: ''
twitter:player:height: ''
twitter:player:stream: ''
twitter:app:name:iphone: ''
twitter:app:id:iphone: ''
twitter:app:url:iphone: ''
twitter:app:name:ipad: ''
twitter:app:id:ipad: ''
twitter:app:url:ipad: ''
twitter:app:name:googleplay: ''
twitter:app:id:googleplay: ''
twitter:app:url:googleplay: ''
headings:
- level: h4
text: API Platform
- level: h5
text: Core Platform
- level: h5
text: Developer Tools
- level: h5
text: Integrations
- level: h4
text: Solutions
- level: h5
text: By Industry
- level: h5
text: By Use Case
- level: h4
text: Resources
- level: h5
text: Learn & Build
- level: h5
text: Support & Community
- level: h5
text: Trust & Transparency
- level: h1
text: Fast, Scalable, and Reliable |
- level: h2
text: Trusted by over 40,000 forward thinking developers
- level: h2
text: Why Developers Choose APIVerve
- level: h3
text: ⚡ Unmatched Reliability
- level: h3
text: 🔑 True One-Key Simplicity
- level: h3
text: 🌐 GraphQL & Mocking
- level: h2
text: Most Popular APIs
- level: h3
text: Daily API Performance
- level: h2
text: Trusted by Developers Worldwide
- level: h4
text: Tomasz K.
- level: h4
text: Priya M.
- level: h4
text: Rafael S.
- level: h2
text: Native SDKs & Libraries
- level: h4
text: JavaScript/TypeScript
- level: h4
text: React
- level: h4
text: Vue.js
- level: h4
text: Angular
- level: h4
text: Node.js
- level: h4
text: Next.js
- level: h2
text: Frequently Asked Questions
- level: h3
text: How much usage is included with the Free Trial plan?
- level: h3
text: How do I get an API Key?
- level: h3
text: How does APIVerve use my data?
- level: h3
text: Can I change my plan at any time?
- level: h3
text: How do I know my plan usage?
- level: h3
text: Can I cancel my plan anytime?
- level: h3
text: Where can I find my invoices?
- level: h3
text: What are your accepted payment methods?
- level: h3
text: What happens when I go over the token limit for the month?
- level: h3
text: What is a token?
- level: h3
text: Do you offer student discounts?
- level: h2
text: Ready to build something amazing?
- level: h3
text: APIVerve
- level: h4
text: Product
- level: h4
text: Integrations
- level: h4
text: Solutions
- level: h4
text: Resources
- level: h4
text: Compare
- level: h4
text: SDKs
- level: h4
text: Company
- level: h4
text: Legal
imgTags:
- src: /images/favicon.png
alt: APIVerve
- src: /images/wreath.svg
alt: Award
- src: /images/brands/brand06.png
alt: Postman
- src: /images/brands/brand01.png
alt: Microsoft
- src: /images/brands/brand02.png
alt: DuckDuckGo
- src: /images/brands/brand03.png
alt: Topdanmark
- src: /images/brands/brand04.png
alt: University of Maryland
- src: /images/brands/brand05.png
alt: Postman
- src: /images/brands/brand06.png
alt: RapidAPI
- src: /images/brands/brand07.png
alt: Zapier
- src: /images/brands/brand08.svg
alt: Brand
- src: /images/brands/brand01.png
alt: Microsoft
- src: /images/brands/brand02.png
alt: DuckDuckGo
- src: /images/brands/brand03.png
alt: Topdanmark
- src: /images/brands/brand04.png
alt: University of Maryland
- src: /images/brands/brand05.png
alt: Postman
- src: /images/brands/brand06.png
alt: RapidAPI
- src: /images/brands/brand07.png
alt: Zapier
- src: /images/brands/brand08.svg
alt: Brand
- src: /images/favicon.png
alt: APIVerve
responseBody: ''
viewport: width=device-width, initial-scale=1,width=device-width, initial-scale=1
googlebot: index, follow
theme-color: '#ffffff'
application-name: APIVerve
msapplication-TileColor: '#3b82f6'
mobile-web-app-capable: 'yes'
apple-mobile-web-app-title: APIVerve
apple-mobile-web-app-status-bar-style: default
og:image:alt: APIVerve - Fast, Scalable, and Reliable APIs
| key | value |
|---|---|
| requestUrl | https://apiverve.com |
| url | https://apiverve.com/ |
| canonical | https://apiverve.com |
| lang | en |
| charset | utf-8 |
| title | APIVerve - Fast, Scalable, and Reliable APIs |
| image | |
| favicons | [{rel:icon,type:image/x-icon,href:/images/favicon.ico},{rel:icon,type:image/png,href:/images/favicon.png},{rel:apple-touch-icon,href:/images/favicon.png}] |
| author | APIVerve |
| description | APIVerve offers fast, scalable, and reliable APIs for developers. Access data enrichment, validation, and integration services with enterprise-grade performance. |
| keywords | API, developer tools, data enrichment, API integration, scalable APIs, reliable APIs |
| source | |
| price | |
| priceCurrency | |
| availability | |
| robots | index, follow |
| jsonld | [{@context:https://schema.org,@type:Organization,name:APIVerve,url:https://apiverve.com,logo:https://apiverve.com/images/favicon.png,sameAs:[https://www.facebook.com/apiverve,https://www.twitter.com/apivervehq,https://www.linkedin.com/company/apiverve,https://github.com/apiverve,https://www.instagram.com/apiverve]},{@context:https://schema.org,@type:WebSite,url:https://apiverve.com,potentialAction:{@type:SearchAction,target:{@type:EntryPoint,urlTemplate:https://apiverve.com/marketplace?search={search_term_string}},query-input:required name=search_term_string}}] |
| og:url | https://apiverve.com |
| og:locale | |
| og:locale:alternate | |
| og:title | APIVerve - Fast, Scalable, and Reliable APIs |
| og:type | website |
| og:description | APIVerve offers fast, scalable, and reliable APIs for developers. Access data enrichment, validation, and integration services with enterprise-grade performance. |
| og:determiner | |
| og:site_name | APIVerve |
| og:image | https://apiverve.com/images/posterImage.png |
| og:image:secure_url | |
| og:image:type | |
| og:image:width | 1200 |
| og:image:height | 630 |
| twitter:title | APIVerve - Fast, Scalable, and Reliable APIs |
| twitter:description | APIVerve offers fast, scalable, and reliable APIs for developers. Access data enrichment, validation, and integration services with enterprise-grade performance. |
| twitter:image | https://apiverve.com/images/posterImage.png |
| twitter:image:alt | |
| twitter:card | summary_large_image |
| twitter:site | |
| twitter:site:id | |
| twitter:url | |
| twitter:account_id | |
| twitter:creator | |
| twitter:creator:id | |
| twitter:player | |
| twitter:player:width | |
| twitter:player:height | |
| twitter:player:stream | |
| twitter:app:name:iphone | |
| twitter:app:id:iphone | |
| twitter:app:url:iphone | |
| twitter:app:name:ipad | |
| twitter:app:id:ipad | |
| twitter:app:url:ipad | |
| twitter:app:name:googleplay | |
| twitter:app:id:googleplay | |
| twitter:app:url:googleplay | |
| headings | [{level:h4,text:API Platform},{level:h5,text:Core Platform},{level:h5,text:Developer Tools},{level:h5,text:Integrations},{level:h4,text:Solutions},{level:h5,text:By Industry},{level:h5,text:By Use Case},{level:h4,text:Resources},{level:h5,text:Learn & Build},{level:h5,text:Support & Community},{level:h5,text:Trust & Transparency},{level:h1,text:Fast, Scalable, and Reliable |},{level:h2,text:Trusted by over 40,000 forward thinking developers},{level:h2,text:Why Developers Choose APIVerve},{level:h3,text:⚡ Unmatched Reliability},{level:h3,text:🔑 True One-Key Simplicity},{level:h3,text:🌐 GraphQL & Mocking},{level:h2,text:Most Popular APIs},{level:h3,text:Daily API Performance},{level:h2,text:Trusted by Developers Worldwide},{level:h4,text:Tomasz K.},{level:h4,text:Priya M.},{level:h4,text:Rafael S.},{level:h2,text:Native SDKs & Libraries},{level:h4,text:JavaScript/TypeScript},{level:h4,text:React},{level:h4,text:Vue.js},{level:h4,text:Angular},{level:h4,text:Node.js},{level:h4,text:Next.js},{level:h2,text:Frequently Asked Questions},{level:h3,text:How much usage is included with the Free Trial plan?},{level:h3,text:How do I get an API Key?},{level:h3,text:How does APIVerve use my data?},{level:h3,text:Can I change my plan at any time?},{level:h3,text:How do I know my plan usage?},{level:h3,text:Can I cancel my plan anytime?},{level:h3,text:Where can I find my invoices?},{level:h3,text:What are your accepted payment methods?},{level:h3,text:What happens when I go over the token limit for the month?},{level:h3,text:What is a token?},{level:h3,text:Do you offer student discounts?},{level:h2,text:Ready to build something amazing?},{level:h3,text:APIVerve},{level:h4,text:Product},{level:h4,text:Integrations},{level:h4,text:Solutions},{level:h4,text:Resources},{level:h4,text:Compare},{level:h4,text:SDKs},{level:h4,text:Company},{level:h4,text:Legal}] |
| imgTags | [{src:/images/favicon.png,alt:APIVerve},{src:/images/wreath.svg,alt:Award},{src:/images/brands/brand06.png,alt:Postman},{src:/images/brands/brand01.png,alt:Microsoft},{src:/images/brands/brand02.png,alt:DuckDuckGo},{src:/images/brands/brand03.png,alt:Topdanmark},{src:/images/brands/brand04.png,alt:University of Maryland},{src:/images/brands/brand05.png,alt:Postman},{src:/images/brands/brand06.png,alt:RapidAPI},{src:/images/brands/brand07.png,alt:Zapier},{src:/images/brands/brand08.svg,alt:Brand},{src:/images/brands/brand01.png,alt:Microsoft},{src:/images/brands/brand02.png,alt:DuckDuckGo},{src:/images/brands/brand03.png,alt:Topdanmark},{src:/images/brands/brand04.png,alt:University of Maryland},{src:/images/brands/brand05.png,alt:Postman},{src:/images/brands/brand06.png,alt:RapidAPI},{src:/images/brands/brand07.png,alt:Zapier},{src:/images/brands/brand08.svg,alt:Brand},{src:/images/favicon.png,alt:APIVerve}] |
| responseBody | |
| viewport | width=device-width, initial-scale=1,width=device-width, initial-scale=1 |
| googlebot | index, follow |
| theme-color | #ffffff |
| application-name | APIVerve |
| msapplication-TileColor | #3b82f6 |
| mobile-web-app-capable | yes |
| apple-mobile-web-app-title | APIVerve |
| apple-mobile-web-app-status-bar-style | default |
| og:image:alt | APIVerve - Fast, Scalable, and Reliable APIs |
Response Structure
All API responses follow a consistent structure with the following fields:
| Field | Type | Description | Example |
|---|---|---|---|
status | string | Indicates whether the request was successful ("ok") or failed ("error") | ok |
error | string | null | Contains error message if status is "error", otherwise null | null |
data | object | null | Contains the API response data if successful, otherwise null | {...} |
Learn more about response formats →
Response Data Fields
When the request is successful, the data object contains the following fields:
| Field | Type | Sample Value | Description |
|---|---|---|---|
requestUrl | string | Original URL provided in the request | |
url | string | Final resolved URL after redirects and canonicalization | |
canonicalPremium | string | Canonical URL specified in page meta tags | |
lang | string | Page language code extracted from HTML attributes | |
charset | string | Character encoding declared in page metadata | |
title | string | Page title tag content for SEO optimization | |
imagePremium | string | Primary open graph image URL for social sharing | |
| [ ] Array items: | array[3] | Array of favicon objects with rel, type, and href | |
└ rel | string | - | |
└ type | string | - | |
└ href | string | - | |
author | string | Author meta tag content for attribution | |
description | string | Meta description tag for search engine snippets | |
keywords | string | Meta keywords tag for SEO targeting | |
sourcePremium | string | Schema.org source property from structured data | |
pricePremium | string | Product pricing information from schema markup | |
priceCurrencyPremium | string | Currency code for product pricing in schema | |
availabilityPremium | string | Product availability status from structured data | |
robots | string | Robots meta tag directives for search indexing | |
| [ ] Array items: | array[2] | Array of JSON-LD structured data objects |
Headers
Only X-API-Key is required. Optional headers include Accept for response format negotiation (JSON, XML, or YAML), User-Agent, and X-Request-ID for request tracing. See all request headers →
GraphQL AccessALPHA
Access SEO Data Scraper through GraphQL to combine it with other API calls in a single request. Query only the seo data scraper data you need with precise field selection, and orchestrate complex data fetching workflows.
Credit Cost: Each API called in your GraphQL query consumes its standard credit cost.
POST https://api.apiverve.com/v1/graphqlquery {
seoscraper(
input: {
url: "https://apiverve.com"
}
) {
requestUrl
url
canonical
lang
charset
title
image
favicons
author
description
keywords
source
price
priceCurrency
availability
robots
jsonld
og:url
og:locale
og:locale:alternate
og:title
og:type
og:description
og:determiner
og:site_name
og:image
og:image:secure_url
og:image:type
og:image:width
og:image:height
twitter:title
twitter:description
twitter:image
twitter:image:alt
twitter:card
twitter:site
twitter:site:id
twitter:url
twitter:account_id
twitter:creator
twitter:creator:id
twitter:player
twitter:player:width
twitter:player:height
twitter:player:stream
twitter:app:name:iphone
twitter:app:id:iphone
twitter:app:url:iphone
twitter:app:name:ipad
twitter:app:id:ipad
twitter:app:url:ipad
twitter:app:name:googleplay
twitter:app:id:googleplay
twitter:app:url:googleplay
headings
imgTags
responseBody
viewport
googlebot
theme_color
application_name
msapplication_TileColor
mobile_web_app_capable
apple_mobile_web_app_title
apple_mobile_web_app_status_bar_style
og:image:alt
}
}Note: Authentication is handled via the x-api-key header in your GraphQL request, not as a query parameter.
CORS Support
The SEO Data Scraper API accepts cross-origin requests from any origin, so it can be called directly from browser-based applications without a proxy. See CORS support →
Rate Limiting
SEO Data Scraper requests are throttled per minute on the Free plan and unthrottled on paid plans. Exceeding the limit returns 429 Too Many Requests; rate-limit usage is reported in the X-RateLimit-Limit, X-RateLimit-Remaining, and X-RateLimit-Reset response headers. See per-plan limits and best practices →
Error Codes
The SEO Data Scraper API uses standard HTTP status codes — 200 on success, 400 for invalid parameters, 401 for missing or invalid keys, 403 for insufficient credits, 429 for rate-limit exhaustion, and 500/503 for server-side issues. Each error response includes an X-Request-ID header you can quote when contacting support. See full error handling guide →
SDKs for SEO Data Scraper
Official SEO Data Scraper packages on npm, PyPI, NuGet, and JitPack — plus a Postman collection and an OpenAPI spec. See the SDK guide →
No-Code Integrations
SEO Data Scraper works with Zapier, Make, Pipedream, n8n, and Power Automate using the same API key. See setup guides →
Frequently Asked Questions
How do I get an API key for SEO Data Scraper?
How many credits does SEO Data Scraper cost?
Each successful SEO Data Scraper API call consumes credits based on plan tier. Check the pricing section above for the exact credit cost. Failed requests and errors don't consume credits, so you only pay for successful seo data scraper lookups.
Can I use SEO Data Scraper in production?
The free plan is for testing and development only. For production use of SEO Data Scraper, upgrade to a paid plan (Starter, Pro, or Mega) which includes commercial use rights, no attribution requirements, and guaranteed uptime SLAs. All paid plans are production-ready.
Can I use SEO Data Scraper from a browser?
What happens if I exceed my SEO Data Scraper credit limit?
When you reach your monthly credit limit, SEO Data Scraper API requests will return an error until you upgrade your plan or wait for the next billing cycle. You'll receive notifications at 80% and 95% usage to give you time to upgrade if needed.








