API Documentation

Developer Documentation

Everything you need to integrate our powerful SEO and metadata APIs into your applications. Get started in minutes with our comprehensive guides and examples.

Metadata API
Extract comprehensive metadata, Open Graph, and Twitter Card data from any URL
SERP API
Get real-time search engine results with detailed ranking and snippet information
Web Crawler
Crawl websites systematically to gather SEO data and analyze site structure

Quick Start Guide

Get up and running with our APIs in just a few steps

1

Get Your API Key

Sign up for a free account and get your API key to start making requests.

Create Account
2

Make Your First Request

Use our REST API or SDKs to start extracting metadata and SEO data.

3

Integrate & Scale

Build powerful SEO tools and applications with our reliable infrastructure.

Try it now:

bash
curl -X GET "https://api.example.com/v1/metadata?url=https://example.com" \
  -H "Authorization: Bearer YOUR_API_KEY"

API Reference

Comprehensive documentation for all our API endpoints

GET /v1/metadata
Extract metadata, Open Graph, and Twitter Card data from any URL

Parameters

url (required) - The URL to extract metadata from

Example Request

bash
curl -X GET "https://api.example.com/v1/metadata?url=https://example.com" \
  -H "Authorization: Bearer YOUR_API_KEY"

Example Response

json
{
  "url": "https://example.com",
  "title": "Example Domain",
  "description": "This domain is for use in illustrative examples in documents.",
  "image": "https://example.com/image.jpg",
  "favicon": "https://example.com/favicon.ico",
  "author": "Example Author",
  "keywords": ["example", "domain", "test"],
  "og": {
    "title": "Example Domain",
    "description": "This domain is for use in illustrative examples",
    "image": "https://example.com/og-image.jpg",
    "type": "website"
  },
  "twitter": {
    "card": "summary_large_image",
    "title": "Example Domain",
    "description": "This domain is for use in illustrative examples",
    "image": "https://example.com/twitter-image.jpg"
  }
}

SDKs & Libraries

Use our official SDKs to integrate quickly in your preferred language

JavaScript/Node.js SDK
Official SDK for JavaScript and Node.js applications
javascript
// Install the SDK
npm install @yourapi/sdk

// Use in your application
import { MetadataAPI } from '@yourapi/sdk';

const client = new MetadataAPI('YOUR_API_KEY');

const metadata = await client.getMetadata('https://example.com');
console.log(metadata);

Ready to Get Started?

Join thousands of developers using our APIs to build powerful SEO tools and applications.

No credit card required • Free tier available • Cancel anytime