Everything you need to integrate our powerful SEO and metadata APIs into your applications. Get started in minutes with our comprehensive guides and examples.
Get up and running with our APIs in just a few steps
Sign up for a free account and get your API key to start making requests.
Create AccountUse our REST API or SDKs to start extracting metadata and SEO data.
Build powerful SEO tools and applications with our reliable infrastructure.
curl -X GET "https://api.example.com/v1/metadata?url=https://example.com" \
-H "Authorization: Bearer YOUR_API_KEY"
Comprehensive documentation for all our API endpoints
url
(required) - The URL to extract metadata from
curl -X GET "https://api.example.com/v1/metadata?url=https://example.com" \
-H "Authorization: Bearer YOUR_API_KEY"
{
"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"
}
}
Use our official SDKs to integrate quickly in your preferred language
// 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);
Join thousands of developers using our APIs to build powerful SEO tools and applications.
No credit card required • Free tier available • Cancel anytime