Metadata Extractor API
Metadata Extractor is a simple tool for extracting metadata from web pages. It returns the meta title, meta description, and more.
The Metadata Extractor API provides reliable and fast access to metadata extractor data through a simple REST interface. Built for developers who need consistent, high-quality results with minimal setup time.
To use Metadata Extractor, 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/metadataextractorCode Examples
Here are examples of how to call the Metadata Extractor API in different programming languages:
curl -X POST \
"https://api.apiverve.com/v1/metadataextractor" \
-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/metadataextractor', {
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/metadataextractor', 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/metadataextractor', 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/metadataextractor');
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/metadataextractor", 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/metadataextractor')
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/metadataextractor", content);
response.EnsureSuccessStatusCode();
var responseBody = await response.Content.ReadAsStringAsync();
Console.WriteLine(responseBody);
}
}Authentication
The Metadata Extractor 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 Metadata Extractor API directly in your browser with live requests and responses.
Parameters
The following parameters are available for the Metadata Extractor API:
Extract Metadata
| Parameter | Type | Required | Description | Default | Example |
|---|---|---|---|---|---|
url | string | required | The URL of the web page to extract metadata from Format: url (e.g., https://www.wikipedia.org) | - |
Response
The Metadata Extractor API returns responses in JSON, XML, YAML, 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"
}
}<?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 submitted for metadata extraction | |
url | string | Final resolved URL after redirects | |
canonicalPremium | string | Canonical URL from page meta tag | |
lang | string | Page language code from HTML lang attribute | |
charset | string | Character encoding specified in meta tags | |
title | string | Page title extracted from title tag | |
imagePremium | string | Primary image URL from meta tags | |
| [ ] Array items: | array[3] | Array of favicon objects with URL references | |
└ rel | string | - | |
└ type | string | - | |
└ href | string | - | |
author | string | Page author extracted from meta tags | |
description | string | Page description from meta description tag | |
keywords | string | Keywords extracted from meta keywords tag | |
sourcePremium | string | Page source or publication reference | |
pricePremium | string | Product price if available in schema | |
priceCurrencyPremium | string | Currency code for price field | |
availabilityPremium | string | Product availability status from schema | |
robots | string | Robots meta tag for search engine indexing | |
| [ ] Array items: | array[2] | JSON-LD structured data schemas |
Headers
Required and optional headers for Metadata Extractor API requests:
| Header Name | Required | Example Value | Description |
|---|---|---|---|
X-API-Key | required | your_api_key_here | Your APIVerve API key. Found in your dashboard under API Keys. |
Accept | optional | application/json | Specify response format: application/json (default), application/xml, or application/yaml |
User-Agent | optional | MyApp/1.0 | Identifies your application for analytics and debugging purposes |
X-Request-ID | optional | req_123456789 | Custom request identifier for tracking and debugging requests |
Cache-Control | optional | no-cache | Control caching behavior for the request and response |
GraphQL AccessALPHA
Access Metadata Extractor through GraphQL to combine it with other API calls in a single request. Query only the metadata extractor 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 {
metadataextractor(
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 Metadata Extractor API supports Cross-Origin Resource Sharing (CORS) with wildcard configuration, allowing you to call Metadata Extractor 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 call Metadata Extractor directly from JavaScript running in the browser without encountering CORS errors. No proxy server or additional configuration needed.
Rate Limiting
Metadata Extractor API requests are subject to rate limiting based on your subscription plan. These limits ensure fair usage and maintain service quality for all Metadata Extractor users.
| Plan | Rate Limit | Description |
|---|---|---|
| Free | 5 requests/min | Hard rate limit enforced - exceeding will return 429 errors |
| Starter | No Limit | Production ready - standard traffic priority |
| Pro | No Limit | Production ready - preferred traffic priority |
| Mega | No Limit | Production ready - highest traffic priority |
Learn more about rate limiting →
Rate Limit Headers
When rate limits apply, each Metadata Extractor 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, Metadata Extractor 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 for Metadata Extractor:
- Monitor the rate limit headers to track your Metadata Extractor usage (Free plan only)
- Cache metadata extractor responses where appropriate to reduce API calls
- Upgrade to Pro or Mega for guaranteed no-throttle Metadata Extractor performance
Note: Metadata Extractor rate limits are separate from credit consumption. You may have credits remaining but still hit rate limits when using Metadata Extractor on Free tier.
Error Codes
The Metadata Extractor 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 credits | Check credit 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 |
Learn more about error handling →
Need help? Contact support with your X-Request-ID for assistance.
Integrate Metadata Extractor with SDKs
Get started quickly with official Metadata Extractor SDKs for your preferred language. Each library handles authentication, request formatting, and error handling automatically.
Available for Node.js, Python, C#/.NET, and Android/Java. All SDKs are open source and regularly updated.
Integrate Metadata Extractor with No-Code API Tools
Connect the Metadata Extractor API to your favorite automation platform without writing code. Build workflows that leverage metadata extractor data across thousands of apps.





All platforms use your same API key to access Metadata Extractor. Visit our integrations hub for step-by-step setup guides.
Frequently Asked Questions
How do I get an API key for Metadata Extractor?
How many credits does Metadata Extractor cost?
Each successful Metadata Extractor 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 metadata extractor lookups.
Can I use Metadata Extractor in production?
The free plan is for testing and development only. For production use of Metadata Extractor, 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 Metadata Extractor from a browser?
What happens if I exceed my Metadata Extractor credit limit?
When you reach your monthly credit limit, Metadata Extractor 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.



