SEO Data ScraperSEO Data Scraper API

OnlineCredit Usage:5 per call
avg: 1899ms|p50: 1728ms|p75: 2013ms|p90: 2355ms|p99: 3038ms

SEO Scraper is a simple tool for scraping SEO data. It returns the meta title, meta description, and more.

The SEO Data Scraper 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 SEO Data Scraper, you need an API key. You can get one by creating a free account and visiting your dashboard.

POST Endpoint

URL
https://api.apiverve.com/v1/seoscraper

Code Examples

Here are examples of how to call the SEO Data Scraper API in different programming languages:

cURL Request
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"
}'
JavaScript (Fetch API)
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);
Python (Requests)
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)
Node.js (Native HTTPS)
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 (cURL)
<?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);

?>
Go (net/http)
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))
}
Ruby (Net::HTTP)
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))
C# (HttpClient)
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

The SEO Data Scraper API requires authentication via API key. Include your API key in the request header:

Required Header
X-API-Key: your_api_key_here

Interactive API Playground

Test the SEO Data Scraper API directly in your browser with live requests and responses.

Parameters

The following parameters are available for the SEO Data Scraper API:

Scrape SEO Data

ParameterTypeRequiredDescriptionDefaultExample
urlstringYesThe URL of the web page to scrape SEO data from-https://apiverve.com

Response

The SEO Data Scraper API returns responses in JSON, XML, YAML, and CSV formats:

Example Responses

JSON Response
200 OK
{
  "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 Response
200 OK
<?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 &amp; Build</text>
      </heading>
      <heading>
        <level>h5</level>
        <text>Support &amp; Community</text>
      </heading>
      <heading>
        <level>h5</level>
        <text>Trust &amp; 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 &amp; 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 &amp; 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>
YAML Response
200 OK
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
CSV Response
200 OK
keyvalue
requestUrlhttps://apiverve.com
urlhttps://apiverve.com/
canonicalhttps://apiverve.com
langen
charsetutf-8
titleAPIVerve - 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}]
authorAPIVerve
descriptionAPIVerve offers fast, scalable, and reliable APIs for developers. Access data enrichment, validation, and integration services with enterprise-grade performance.
keywordsAPI, developer tools, data enrichment, API integration, scalable APIs, reliable APIs
source
price
priceCurrency
availability
robotsindex, 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:urlhttps://apiverve.com
og:locale
og:locale:alternate
og:titleAPIVerve - Fast, Scalable, and Reliable APIs
og:typewebsite
og:descriptionAPIVerve offers fast, scalable, and reliable APIs for developers. Access data enrichment, validation, and integration services with enterprise-grade performance.
og:determiner
og:site_nameAPIVerve
og:imagehttps://apiverve.com/images/posterImage.png
og:image:secure_url
og:image:type
og:image:width1200
og:image:height630
twitter:titleAPIVerve - Fast, Scalable, and Reliable APIs
twitter:descriptionAPIVerve offers fast, scalable, and reliable APIs for developers. Access data enrichment, validation, and integration services with enterprise-grade performance.
twitter:imagehttps://apiverve.com/images/posterImage.png
twitter:image:alt
twitter:cardsummary_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
viewportwidth=device-width, initial-scale=1,width=device-width, initial-scale=1
googlebotindex, follow
theme-color#ffffff
application-nameAPIVerve
msapplication-TileColor#3b82f6
mobile-web-app-capableyes
apple-mobile-web-app-titleAPIVerve
apple-mobile-web-app-status-bar-styledefault
og:image:altAPIVerve - Fast, Scalable, and Reliable APIs

Response Structure

All API responses follow a consistent structure with the following fields:

FieldTypeDescriptionExample
statusstringIndicates whether the request was successful ("ok") or failed ("error")ok
errorstring | nullContains error message if status is "error", otherwise nullnull
dataobject | nullContains the API response data if successful, otherwise null{...}

Response Data Fields

When the request is successful, the data object contains the following fields:

FieldTypeSample Value
requestUrlstring"https://apiverve.com"
urlstring"https://apiverve.com/"
canonicalstring"https://apiverve.com"
langstring"en"
charsetstring"utf-8"
titlestring"APIVerve - Fast, Scalable, and Reliable APIs"
imagestring""
[ ] Array items:array[3]Array of objects
relstring"icon"
typestring"image/x-icon"
hrefstring"/images/favicon.ico"
authorstring"APIVerve"
descriptionstring"APIVerve offers fast, scalable, and reliable APIs for developers. Access data enrichment, validation, and integration services with enterprise-grade performance."
keywordsstring"API, developer tools, data enrichment, API integration, scalable APIs, reliable APIs"
sourcestring""
pricestring""
priceCurrencystring""
availabilitystring""
robotsstring"index, follow"
[ ] Array items:array[2]Array of objects

Headers

Required and optional headers for API requests:

Header NameRequiredExample ValueDescription
X-API-KeyYesyour_api_key_hereYour APIVerve API key. Found in your dashboard under API Keys.
AcceptNoapplication/jsonSpecify response format: application/json (default), application/xml, or application/yaml
User-AgentNoMyApp/1.0Identifies your application for analytics and debugging purposes
X-Request-IDNoreq_123456789Custom request identifier for tracking and debugging requests
Cache-ControlNono-cacheControl 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.

Credit Cost: Each API called in your GraphQL query consumes its standard credit cost.

GraphQL Endpoint
POST https://api.apiverve.com/v1/graphql
GraphQL Query Example
query {
  seoscraper(
    input: {
      url: "https://apiverve.com"
    }
  ) {
    requestUrl
    url
    canonical
    lang
    charset
    title
    image
    favicons
    author
    description
    keywords
    source
    price
    priceCurrency
    availability
    robots
    jsonld
    og:url
    og:locale
    og:locale:alternate
    og:title
    og:type
    og:description
    og:determiner
    og:site_name
    og:image
    og:image:secure_url
    og:image:type
    og:image:width
    og:image:height
    twitter:title
    twitter:description
    twitter:image
    twitter:image:alt
    twitter:card
    twitter:site
    twitter:site:id
    twitter:url
    twitter:account_id
    twitter:creator
    twitter:creator:id
    twitter:player
    twitter:player:width
    twitter:player:height
    twitter:player:stream
    twitter:app:name:iphone
    twitter:app:id:iphone
    twitter:app:url:iphone
    twitter:app:name:ipad
    twitter:app:id:ipad
    twitter:app:url:ipad
    twitter:app:name:googleplay
    twitter:app:id:googleplay
    twitter:app:url:googleplay
    headings
    imgTags
    responseBody
    viewport
    googlebot
    theme_color
    application_name
    msapplication_TileColor
    mobile_web_app_capable
    apple_mobile_web_app_title
    apple_mobile_web_app_status_bar_style
    og:image:alt
  }
}

Note: Authentication is handled via the x-api-key header in your GraphQL request, not as a query parameter.

CORS Support

The SEO Data Scraper API supports Cross-Origin Resource Sharing (CORS) with wildcard configuration, allowing you to call SEO Data Scraper directly from browser-based applications without proxy servers.

CORS HeaderValueDescription
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.

PlanRate LimitDescription
Free5 requests/minHard rate limit enforced - exceeding will return 429 errors
StarterNo LimitProduction ready - no rate limiting or throttling
ProNo LimitProduction ready - no rate limiting or throttling
MegaNo LimitProduction ready - no rate limiting or throttling

Rate Limit Headers

When rate limits apply, each API response includes headers to help you track your usage:

HeaderDescription
X-RateLimit-LimitMaximum number of requests allowed per time window
X-RateLimit-RemainingNumber of requests remaining in the current window
X-RateLimit-ResetUnix timestamp when the rate limit window resets

Handling Rate Limits

Free Plan: When you exceed your rate limit, SEO Data Scraper 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 credit consumption. You may have credits 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:

NPMPyPINuGetSwagger

Error Codes

The SEO Data Scraper API uses standard HTTP status codes to indicate success or failure:

CodeMessageDescriptionSolution
200OKRequest successful, data returnedNo action needed - request was successful
400Bad RequestInvalid request parameters or malformed requestCheck required parameters and ensure values match expected formats
401UnauthorizedMissing or invalid API keyInclude x-api-key header with valid API key from dashboard
403ForbiddenAPI key lacks permission or insufficient creditsCheck credit balance in dashboard or upgrade plan
429Too Many RequestsRate limit exceeded (Free: 5 req/min)Implement request throttling or upgrade to paid plan
500Internal Server ErrorServer error occurredRetry request after a few seconds, contact support if persists
503Service UnavailableAPI temporarily unavailableWait and retry, check status page for maintenance updates

Need help? Contact support with your X-Request-ID for assistance.

Integrate SEO Data Scraper with No-Code Tools

Connect the SEO Data Scraper API to your favorite automation platform without writing code. Build workflows that leverage seo data scraper data across thousands of apps.

All platforms use your same API key to access SEO Data Scraper. Visit our integrations hub for step-by-step setup guides.

Frequently Asked Questions

How do I get an API key?
Sign up for a free account at dashboard.apiverve.com. Your API key will be automatically generated and available in your dashboard. The free plan includes 1,000 credits plus a 500 credit bonus.
What are credits and how do they work?

Credits are your API usage currency. Each successful API call consumes credits based on the API's complexity. Most APIs cost 1 credit per call, while more complex APIs may cost 2-5 credits. Failed requests and errors don't consume credits. Check the API details above to see the credit cost for this specific API.

Can I use SEO Data Scraper in production?

The free plan is for testing and development only. For production use of SEO Data Scraper, upgrade to a paid plan (Starter, Pro, or Mega) which includes commercial use rights, no attribution requirements, and guaranteed uptime SLAs. All paid plans are production-ready.

Can I use SEO Data Scraper from a browser?
Yes! The SEO Data Scraper API supports CORS with wildcard configuration, so you can call it directly from browser-based JavaScript without needing a proxy server. See the CORS section above for details.
What happens if I exceed my credit limit?

When you reach your monthly credit 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.

What's Next?

Continue your journey with these recommended resources

Was this page helpful?