REST API — Direct HTTP Access to Web Data Infrastructure
Language-agnostic HTTP endpoints for any web resource. LinkedIn, Instagram, Twitter, Reddit, YouTube, SEC EDGAR, GitHub, Amazon, and more — plus AI parsing for any URL. Structured JSON with consistent schemas across every platform.
Quick Start
Complete control over your data extraction
Simple, consistent API design across all platforms.
Base URL
All API requests start here:
Authentication
Header-based token authentication:
Credit System
- • 1 credit = 1 API request
- • Rate limits scale with your plan — 60 to 200 req/min
- • Use credits at your own pace
API Examples
Common use cases for each platform.
LinkedIn Profile Search
curl -X GET "https://api.anysite.io/linkedin/search/users" \ -H "access-token: YOUR_ACCESS_TOKEN" \ -G -d "query=marketing manager" -d "limit=5"
Extract LinkedIn profiles, find contact information, and build prospect lists.
Instagram Post Analysis
curl -X GET "https://api.anysite.io/instagram/user/techcompany/posts" \ -H "access-token: YOUR_ACCESS_TOKEN" \ -G -d "limit=10"
Track brand mentions, analyze engagement, and monitor social media performance.
Twitter/X Post Search
curl -X POST "https://api.anysite.io/api/twitter/search/posts" \ -H "access-token: YOUR_ACCESS_TOKEN" \ -H "Content-Type: application/json" \ -d '{"query": "artificial intelligence", "min_likes": 100, "count": 50}'
Search tweets by keyword, filter by engagement, extract user profiles and timeline data.
Reddit Discussion Monitoring
curl -X GET "https://api.anysite.io/reddit/search/posts" \ -H "access-token: YOUR_ACCESS_TOKEN" \ -G -d "query=artificial intelligence" -d "subreddit=technology"
Monitor discussions, track sentiment, and gather insights from Reddit communities.
YouTube Video Data
curl -X GET "https://api.anysite.io/api/youtube/video" \ -H "access-token: YOUR_ACCESS_TOKEN" \ -G -d "url=https://youtube.com/watch?v=VIDEO_ID"
Video metadata, subtitles, channel libraries, and engagement metrics.
SEC EDGAR Filings
curl -X GET "https://api.anysite.io/api/sec/company/search" \ -H "access-token: YOUR_ACCESS_TOKEN" \ -G -d "query=Tesla"
Company search, 10-K, 10-Q, and 8-K filings for financial research.
Web Parser — Any URL
curl -X POST "https://api.anysite.io/api/web/parse" \ -H "access-token: YOUR_ACCESS_TOKEN" \ -H "Content-Type: application/json" \ -d '{"url": "https://example.com/page", "extract": ["content", "metadata", "links"]}'
Parse and extract structured data from any URL. AI-powered extraction for GitHub, Amazon, Glassdoor, G2, Trustpilot, and more.
Part of the Anysite Platform
The REST API is one of four interfaces to the same Anysite engine. For production data pipelines with batch processing, database loading, and scheduling, see the CLI. For AI-native access through Claude, Cursor, or ChatGPT, see the MCP Server. For visual automation, see n8n Nodes.
All interfaces share the same platform coverage, data quality, and credit system.
Get Started
Start extracting web data in just three steps.
Get Your API Key
Sign up at app.anysite.io and get your access token from the dashboard.
Test Your Access
Verify your API key is working correctly.
curl -X GET "https://api.anysite.io/token/statistic" \ -H "access-token: YOUR_ACCESS_TOKEN"
Extract Data
Start extracting data from any supported platform.
curl -X GET "https://api.anysite.io/linkedin/search/users" \ -H "access-token: YOUR_ACCESS_TOKEN" \ -G -d "query=marketing manager" -d "limit=5"