SEO Data Scraper
SEO Scraper is a simple tool for scraping SEO data. It returns the meta title, meta description, and more.
This API provides reliable and fast access to seo data scraper data through a simple REST interface. Built for developers who need consistent, high-quality results with minimal setup time.
To use this API, 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/seoscraperCode Examples
Here are examples of how to call this 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)const https = require('https');
const url = require('url');
const options = {
method: 'POST',
headers: {
'X-API-Key': 'your_api_key_here',
'Content-Type': 'application/json'
}
};
const postData = JSON.stringify({
"url": "https://apiverve.com"
});
const req = https.request('https://api.apiverve.com/v1/seoscraper', options, (res) => {
let data = '';
res.on('data', (chunk) => data += chunk);
res.on('end', () => console.log(JSON.parse(data)));
});
req.write(postData);
req.end();<?php
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, 'https://api.apiverve.com/v1/seoscraper');
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, 'POST');
curl_setopt($ch, CURLOPT_HTTPHEADER, [
'X-API-Key: your_api_key_here',
'Content-Type: application/json'
]);
curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode({
'url': 'https://apiverve.com'
}));
$response = curl_exec($ch);
curl_close($ch);
$data = json_decode($response, true);
print_r($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))
}require 'net/http'
require 'json'
uri = URI('https://api.apiverve.com/v1/seoscraper')
http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = true
payload = {
"url": "https://apiverve.com"
}
request = Net::HTTP::Post.new(uri)
request['X-API-Key'] = 'your_api_key_here'
request['Content-Type'] = 'application/json'
request.body = payload.to_json
response = http.request(request)
puts JSON.pretty_generate(JSON.parse(response.body))using System;
using System.Net.Http;
using System.Text;
using System.Threading.Tasks;
class Program
{
static async Task Main(string[] args)
{
using var client = new HttpClient();
client.DefaultRequestHeaders.Add("X-API-Key", "your_api_key_here");
var jsonContent = @"{
""url"": ""https://apiverve.com""
}";
var content = new StringContent(jsonContent, Encoding.UTF8, "application/json");
var response = await client.PostAsync("https://api.apiverve.com/v1/seoscraper", content);
response.EnsureSuccessStatusCode();
var responseBody = await response.Content.ReadAsStringAsync();
Console.WriteLine(responseBody);
}
}Authentication
This API requires authentication via API key. Include your API key in the request header:
X-API-Key: your_api_key_hereInteractive API Playground
Test this API directly in your browser with live requests and responses.
Parameters
The following parameters are available for this API endpoint:
| Parameter | Type | Required | Description | Default | Example |
|---|---|---|---|---|---|
| url | string | Yes | The URL of the web page to scrape SEO data from | - | - |
Response
The API returns responses in JSON, XML, YAML, Markdown, and CSV formats:
Example Responses
{
"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"
}
}<Root>
<status>ok</status>
<error />
<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>
<rel>icon</rel>
<type>image/x-icon</type>
<href>/images/favicon.ico</href>
</favicons>
<favicons>
<rel>icon</rel>
<type>image/png</type>
<href>/images/favicon.png</href>
</favicons>
<favicons>
<rel>apple-touch-icon</rel>
<href>/images/favicon.png</href>
</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>
<_x0040_context>https://schema.org</_x0040_context>
<_x0040_type>Organization</_x0040_type>
<name>APIVerve</name>
<url>https://apiverve.com</url>
<logo>https://apiverve.com/images/favicon.png</logo>
<sameAs>https://www.facebook.com/apiverve</sameAs>
<sameAs>https://www.twitter.com/apivervehq</sameAs>
<sameAs>https://www.linkedin.com/company/apiverve</sameAs>
<sameAs>https://github.com/apiverve</sameAs>
<sameAs>https://www.instagram.com/apiverve</sameAs>
</jsonld>
<jsonld>
<_x0040_context>https://schema.org</_x0040_context>
<_x0040_type>WebSite</_x0040_type>
<url>https://apiverve.com</url>
<potentialAction>
<_x0040_type>SearchAction</_x0040_type>
<target>
<_x0040_type>EntryPoint</_x0040_type>
<urlTemplate>https://apiverve.com/marketplace?search={search_term_string}</urlTemplate>
</target>
<query-input>required name=search_term_string</query-input>
</potentialAction>
</jsonld>
<og_x003A_url>https://apiverve.com</og_x003A_url>
<og_x003A_locale></og_x003A_locale>
<og_x003A_locale_x003A_alternate></og_x003A_locale_x003A_alternate>
<og_x003A_title>APIVerve - Fast, Scalable, and Reliable APIs</og_x003A_title>
<og_x003A_type>website</og_x003A_type>
<og_x003A_description>APIVerve offers fast, scalable, and reliable APIs for developers. Access data enrichment, validation, and integration services with enterprise-grade performance.</og_x003A_description>
<og_x003A_determiner></og_x003A_determiner>
<og_x003A_site_name>APIVerve</og_x003A_site_name>
<og_x003A_image>https://apiverve.com/images/posterImage.png</og_x003A_image>
<og_x003A_image_x003A_secure_url></og_x003A_image_x003A_secure_url>
<og_x003A_image_x003A_type></og_x003A_image_x003A_type>
<og_x003A_image_x003A_width>1200</og_x003A_image_x003A_width>
<og_x003A_image_x003A_height>630</og_x003A_image_x003A_height>
<twitter_x003A_title>APIVerve - Fast, Scalable, and Reliable APIs</twitter_x003A_title>
<twitter_x003A_description>APIVerve offers fast, scalable, and reliable APIs for developers. Access data enrichment, validation, and integration services with enterprise-grade performance.</twitter_x003A_description>
<twitter_x003A_image>https://apiverve.com/images/posterImage.png</twitter_x003A_image>
<twitter_x003A_image_x003A_alt></twitter_x003A_image_x003A_alt>
<twitter_x003A_card>summary_large_image</twitter_x003A_card>
<twitter_x003A_site></twitter_x003A_site>
<twitter_x003A_site_x003A_id></twitter_x003A_site_x003A_id>
<twitter_x003A_url></twitter_x003A_url>
<twitter_x003A_account_id></twitter_x003A_account_id>
<twitter_x003A_creator></twitter_x003A_creator>
<twitter_x003A_creator_x003A_id></twitter_x003A_creator_x003A_id>
<twitter_x003A_player></twitter_x003A_player>
<twitter_x003A_player_x003A_width></twitter_x003A_player_x003A_width>
<twitter_x003A_player_x003A_height></twitter_x003A_player_x003A_height>
<twitter_x003A_player_x003A_stream></twitter_x003A_player_x003A_stream>
<twitter_x003A_app_x003A_name_x003A_iphone></twitter_x003A_app_x003A_name_x003A_iphone>
<twitter_x003A_app_x003A_id_x003A_iphone></twitter_x003A_app_x003A_id_x003A_iphone>
<twitter_x003A_app_x003A_url_x003A_iphone></twitter_x003A_app_x003A_url_x003A_iphone>
<twitter_x003A_app_x003A_name_x003A_ipad></twitter_x003A_app_x003A_name_x003A_ipad>
<twitter_x003A_app_x003A_id_x003A_ipad></twitter_x003A_app_x003A_id_x003A_ipad>
<twitter_x003A_app_x003A_url_x003A_ipad></twitter_x003A_app_x003A_url_x003A_ipad>
<twitter_x003A_app_x003A_name_x003A_googleplay></twitter_x003A_app_x003A_name_x003A_googleplay>
<twitter_x003A_app_x003A_id_x003A_googleplay></twitter_x003A_app_x003A_id_x003A_googleplay>
<twitter_x003A_app_x003A_url_x003A_googleplay></twitter_x003A_app_x003A_url_x003A_googleplay>
<headings>
<level>h4</level>
<text>API Platform</text>
</headings>
<headings>
<level>h5</level>
<text>Core Platform</text>
</headings>
<headings>
<level>h5</level>
<text>Developer Tools</text>
</headings>
<headings>
<level>h5</level>
<text>Integrations</text>
</headings>
<headings>
<level>h4</level>
<text>Solutions</text>
</headings>
<headings>
<level>h5</level>
<text>By Industry</text>
</headings>
<headings>
<level>h5</level>
<text>By Use Case</text>
</headings>
<headings>
<level>h4</level>
<text>Resources</text>
</headings>
<headings>
<level>h5</level>
<text>Learn & Build</text>
</headings>
<headings>
<level>h5</level>
<text>Support & Community</text>
</headings>
<headings>
<level>h5</level>
<text>Trust & Transparency</text>
</headings>
<headings>
<level>h1</level>
<text>Fast, Scalable, and Reliable |</text>
</headings>
<headings>
<level>h2</level>
<text>Trusted by over 40,000 forward thinking developers</text>
</headings>
<headings>
<level>h2</level>
<text>Why Developers Choose APIVerve</text>
</headings>
<headings>
<level>h3</level>
<text>⚡ Unmatched Reliability</text>
</headings>
<headings>
<level>h3</level>
<text>🔑 True One-Key Simplicity</text>
</headings>
<headings>
<level>h3</level>
<text>🌐 GraphQL & Mocking</text>
</headings>
<headings>
<level>h2</level>
<text>Most Popular APIs</text>
</headings>
<headings>
<level>h3</level>
<text>Daily API Performance</text>
</headings>
<headings>
<level>h2</level>
<text>Trusted by Developers Worldwide</text>
</headings>
<headings>
<level>h4</level>
<text>Tomasz K.</text>
</headings>
<headings>
<level>h4</level>
<text>Priya M.</text>
</headings>
<headings>
<level>h4</level>
<text>Rafael S.</text>
</headings>
<headings>
<level>h2</level>
<text>Native SDKs & Libraries</text>
</headings>
<headings>
<level>h4</level>
<text>JavaScript/TypeScript</text>
</headings>
<headings>
<level>h4</level>
<text>React</text>
</headings>
<headings>
<level>h4</level>
<text>Vue.js</text>
</headings>
<headings>
<level>h4</level>
<text>Angular</text>
</headings>
<headings>
<level>h4</level>
<text>Node.js</text>
</headings>
<headings>
<level>h4</level>
<text>Next.js</text>
</headings>
<headings>
<level>h2</level>
<text>Frequently Asked Questions</text>
</headings>
<headings>
<level>h3</level>
<text>How much usage is included with the Free Trial plan?</text>
</headings>
<headings>
<level>h3</level>
<text>How do I get an API Key?</text>
</headings>
<headings>
<level>h3</level>
<text>How does APIVerve use my data?</text>
</headings>
<headings>
<level>h3</level>
<text>Can I change my plan at any time?</text>
</headings>
<headings>
<level>h3</level>
<text>How do I know my plan usage?</text>
</headings>
<headings>
<level>h3</level>
<text>Can I cancel my plan anytime?</text>
</headings>
<headings>
<level>h3</level>
<text>Where can I find my invoices?</text>
</headings>
<headings>
<level>h3</level>
<text>What are your accepted payment methods?</text>
</headings>
<headings>
<level>h3</level>
<text>What happens when I go over the token limit for the month?</text>
</headings>
<headings>
<level>h3</level>
<text>What is a token?</text>
</headings>
<headings>
<level>h3</level>
<text>Do you offer student discounts?</text>
</headings>
<headings>
<level>h2</level>
<text>Ready to build something amazing?</text>
</headings>
<headings>
<level>h3</level>
<text>APIVerve</text>
</headings>
<headings>
<level>h4</level>
<text>Product</text>
</headings>
<headings>
<level>h4</level>
<text>Integrations</text>
</headings>
<headings>
<level>h4</level>
<text>Solutions</text>
</headings>
<headings>
<level>h4</level>
<text>Resources</text>
</headings>
<headings>
<level>h4</level>
<text>Compare</text>
</headings>
<headings>
<level>h4</level>
<text>SDKs</text>
</headings>
<headings>
<level>h4</level>
<text>Company</text>
</headings>
<headings>
<level>h4</level>
<text>Legal</text>
</headings>
<imgTags>
<src>/images/favicon.png</src>
<alt>APIVerve</alt>
</imgTags>
<imgTags>
<src>/images/wreath.svg</src>
<alt>Award</alt>
</imgTags>
<imgTags>
<src>/images/brands/brand06.png</src>
<alt>Postman</alt>
</imgTags>
<imgTags>
<src>/images/brands/brand01.png</src>
<alt>Microsoft</alt>
</imgTags>
<imgTags>
<src>/images/brands/brand02.png</src>
<alt>DuckDuckGo</alt>
</imgTags>
<imgTags>
<src>/images/brands/brand03.png</src>
<alt>Topdanmark</alt>
</imgTags>
<imgTags>
<src>/images/brands/brand04.png</src>
<alt>University of Maryland</alt>
</imgTags>
<imgTags>
<src>/images/brands/brand05.png</src>
<alt>Postman</alt>
</imgTags>
<imgTags>
<src>/images/brands/brand06.png</src>
<alt>RapidAPI</alt>
</imgTags>
<imgTags>
<src>/images/brands/brand07.png</src>
<alt>Zapier</alt>
</imgTags>
<imgTags>
<src>/images/brands/brand08.svg</src>
<alt>Brand</alt>
</imgTags>
<imgTags>
<src>/images/brands/brand01.png</src>
<alt>Microsoft</alt>
</imgTags>
<imgTags>
<src>/images/brands/brand02.png</src>
<alt>DuckDuckGo</alt>
</imgTags>
<imgTags>
<src>/images/brands/brand03.png</src>
<alt>Topdanmark</alt>
</imgTags>
<imgTags>
<src>/images/brands/brand04.png</src>
<alt>University of Maryland</alt>
</imgTags>
<imgTags>
<src>/images/brands/brand05.png</src>
<alt>Postman</alt>
</imgTags>
<imgTags>
<src>/images/brands/brand06.png</src>
<alt>RapidAPI</alt>
</imgTags>
<imgTags>
<src>/images/brands/brand07.png</src>
<alt>Zapier</alt>
</imgTags>
<imgTags>
<src>/images/brands/brand08.svg</src>
<alt>Brand</alt>
</imgTags>
<imgTags>
<src>/images/favicon.png</src>
<alt>APIVerve</alt>
</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_x003A_image_x003A_alt>APIVerve - Fast, Scalable, and Reliable APIs</og_x003A_image_x003A_alt>
</data>
</Root>status: ok
error:
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: "\U0001F511 True One-Key Simplicity"
- level: h3
text: "\U0001F310 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| Field | Value |
| --- | --- |
| status | ok |
| error | |
| 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 || status | error | 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ok | https://apiverve.com | https://apiverve.com/ | https://apiverve.com | en | utf-8 | APIVerve - Fast, Scalable, and Reliable APIs | {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} | APIVerve | APIVerve offers fast, scalable, and reliable APIs for developers. Access data enrichment, validation, and integration services with enterprise-grade performance. | API, developer tools, data enrichment, API integration, scalable APIs, reliable APIs | index, follow | {@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}} | https://apiverve.com | APIVerve - Fast, Scalable, and Reliable APIs | website | APIVerve offers fast, scalable, and reliable APIs for developers. Access data enrichment, validation, and integration services with enterprise-grade performance. | APIVerve | https://apiverve.com/images/posterImage.png | 1200 | 630 | APIVerve - Fast, Scalable, and Reliable APIs | APIVerve offers fast, scalable, and reliable APIs for developers. Access data enrichment, validation, and integration services with enterprise-grade performance. | https://apiverve.com/images/posterImage.png | summary_large_image | {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} | {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} | width=device-width, initial-scale=1,width=device-width, initial-scale=1 | index, follow | #ffffff | APIVerve | #3b82f6 | yes | APIVerve | default | 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 | {...} |
Response Data Fields
When the request is successful, the data object contains the following fields:
| Field | Type | Sample Value |
|---|---|---|
| requestUrl | string | "https://apiverve.com" |
| url | string | "https://apiverve.com/" |
| canonical | string | "https://apiverve.com" |
| lang | string | "en" |
| charset | string | "utf-8" |
| title | string | "APIVerve - Fast, Scalable, and Reliable APIs" |
| image | string | "" |
| [ ] Array items: | array[3] | Array of objects |
| └ rel | string | "icon" |
| └ type | string | "image/x-icon" |
| └ href | string | "/images/favicon.ico" |
| author | string | "APIVerve" |
| description | string | "APIVerve offers fast, scalable, and reliable APIs for developers. Access data enrichment, validation, and integration services with enterprise-grade performance." |
| keywords | string | "API, developer tools, data enrichment, API integration, scalable APIs, reliable APIs" |
| source | string | "" |
| price | string | "" |
| priceCurrency | string | "" |
| availability | string | "" |
| robots | string | "index, follow" |
| [ ] Array items: | array[2] | Array of objects |
Headers
Required and optional headers for API requests:
| Header Name | Required | Example Value | Description |
|---|---|---|---|
| X-API-Key | Yes | your_api_key_here | Your APIVerve API key. Found in your dashboard under API Keys. |
| Accept | No | application/json | Specify response format: application/json (default), application/xml, or application/yaml |
| User-Agent | No | MyApp/1.0 | Identifies your application for analytics and debugging purposes |
| X-Request-ID | No | req_123456789 | Custom request identifier for tracking and debugging requests |
| Cache-Control | No | no-cache | Control caching behavior for the request and response |
GraphQL AccessALPHA
Most APIVerve APIs support GraphQL queries, allowing you to combine multiple API calls into a single request and retrieve only the data you need. This powerful feature enables you to orchestrate complex data fetching with precise field selection.
Not all APIs support GraphQL. Check the API schema or test in the GraphQL Explorer to confirm availability for this specific endpoint.
Token Cost: Each API called in your GraphQL query consumes its standard token 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
All APIVerve APIs support Cross-Origin Resource Sharing (CORS) with wildcard configuration, allowing you to call the API directly from browser-based applications without proxy servers.
| CORS Header | Value | Description |
|---|---|---|
| Access-Control-Allow-Origin | * | Accepts requests from any origin |
| Access-Control-Allow-Methods | * | Accepts any HTTP method |
| Access-Control-Allow-Headers | * | Accepts any request headers |
Browser Usage: You can make direct API calls from JavaScript running in the browser without encountering CORS errors. No additional configuration needed.
Rate Limiting
APIVerve implements rate limiting to ensure fair usage and maintain service quality across all users. Rate limits vary by subscription plan and are applied per API key.
| Plan | Rate Limit | Description |
|---|---|---|
| Free | 5 requests/min | Hard rate limit enforced - exceeding will return 429 errors |
| Starter | No Limit | Production ready - no rate limiting or throttling |
| Pro | No Limit | Production ready - no rate limiting or throttling |
| Mega | No Limit | Production ready - no rate limiting or throttling |
Rate Limit Headers
When rate limits apply, each API response includes headers to help you track your usage:
| Header | Description |
|---|---|
| X-RateLimit-Limit | Maximum number of requests allowed per time window |
| X-RateLimit-Remaining | Number of requests remaining in the current window |
| X-RateLimit-Reset | Unix timestamp when the rate limit window resets |
Handling Rate Limits
Free Plan: When you exceed your rate limit, the API returns a 429 Too Many Requests status code. Your application should implement appropriate backoff logic to handle this gracefully.
Paid Plans: No rate limiting or throttling applied. All paid plans (Starter, Pro, Mega) are production-ready.
Best Practices:
- Monitor the rate limit headers to track your usage (Free plan only)
- Implement caching where appropriate to reduce API calls
- Upgrade to Pro or Mega for guaranteed no-throttle performance
Note: Rate limits are separate from token consumption. You may have tokens remaining but still hit rate limits on Free tier.
Client Libraries
To get started with minimal code, most of our APIs are available through client libraries and clients:
Error Codes
The API uses standard HTTP status codes to indicate success or failure:
| Code | Message | Description | Solution |
|---|---|---|---|
| 200 | OK | Request successful, data returned | No action needed - request was successful |
| 400 | Bad Request | Invalid request parameters or malformed request | Check required parameters and ensure values match expected formats |
| 401 | Unauthorized | Missing or invalid API key | Include x-api-key header with valid API key from dashboard |
| 403 | Forbidden | API key lacks permission or insufficient tokens | Check token balance in dashboard or upgrade plan |
| 429 | Too Many Requests | Rate limit exceeded (Free: 5 req/min) | Implement request throttling or upgrade to paid plan |
| 500 | Internal Server Error | Server error occurred | Retry request after a few seconds, contact support if persists |
| 503 | Service Unavailable | API temporarily unavailable | Wait and retry, check status page for maintenance updates |
Need help? Contact support with your X-Request-ID for assistance.
Frequently Asked Questions
How do I get an API key?
What are tokens and how do they work?
Tokens are your API usage currency. Each successful API call consumes tokens based on the API's complexity. Most APIs cost 1 token per call, while more complex APIs may cost 2-5 tokens. Failed requests and errors don't consume tokens. Check the API details above to see the token cost for this specific API.
Can I use this API in production?
The free plan is for testing and development only. For production use, 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 this API from a browser?
What happens if I exceed my token limit?
When you reach your monthly token limit, 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.
Was this page helpful?
Help us improve our documentation



