Get started with Anysite in minutes
Get up and running with Anysite in just a few steps:
Sign up at [anysite.io](https://app.anysite.io/register) and generate your API key from the dashboard.
Test your API key with a simple request:
```bash
curl -X GET "https://api.anysite.io/token/statistic" \
-H "access-token: YOUR_ACCESS_TOKEN"
```
Select the integration method that best fits your workflow:
- **REST API** for direct integration
- **MCP Server** for AI tools (Claude, Cursor)
- **n8n Nodes** for workflow automation
Extract LinkedIn profiles, find contact information, and build prospect lists
Track brand mentions, competitor analysis, and social sentiment
Gather insights from Reddit discussions, LinkedIn posts, and industry conversations
Analyze trends, track influencers, and monitor industry developments
curl -X POST "https://api.anysite.io/api/linkedin/search/users" \
-H "access-token: YOUR_ACCESS_TOKEN" \
-H "Content-Type: application/json" \
-d '{"keywords": "marketing manager", "count": 5}'
import requests
headers = {
'access-token': 'YOUR_ACCESS_TOKEN',
'Content-Type': 'application/json'
}
data = {
'keywords': 'marketing manager',
'count': 5
}
response = requests.post(
'https://api.anysite.io/api/linkedin/search/users',
headers=headers,
json=data
)
profiles = response.json()
const response = await fetch(
'https://api.anysite.io/api/linkedin/search/users',
{
method: 'POST',
headers: {
'access-token': 'YOUR_ACCESS_TOKEN',
'Content-Type': 'application/json'
},
body: JSON.stringify({
keywords: 'marketing manager',
count: 5
})
}
);
const profiles = await response.json();
curl -X POST "https://api.anysite.io/api/instagram/user/posts" \
-H "access-token: YOUR_ACCESS_TOKEN" \
-H "Content-Type: application/json" \
-d '{"user": "techcompany", "count": 10}'
import requests
headers = {
'access-token': 'YOUR_ACCESS_TOKEN',
'Content-Type': 'application/json'
}
data = {
'user': 'techcompany',
'count': 10
}
response = requests.post(
'https://api.anysite.io/api/instagram/user/posts',
headers=headers,
json=data
)
posts = response.json()
curl -X POST "https://api.anysite.io/api/reddit/search/posts" \
-H "access-token: YOUR_ACCESS_TOKEN" \
-H "Content-Type: application/json" \
-d '{"query": "artificial intelligence", "count": 20}'
import requests
headers = {
'access-token': 'YOUR_ACCESS_TOKEN',
'Content-Type': 'application/json'
}
data = {
'query': 'artificial intelligence',
'count': 20
}
response = requests.post(
'https://api.anysite.io/api/reddit/search/posts',
headers=headers,
json=data
)
discussions = response.json()
**Best for:** Custom applications, direct integrations, microservices
- Full control over requests and data processing
- Support for all programming languages
- Real-time data extraction
- Custom rate limiting and error handling
[View API Documentation →](/docs/api)
**Best for:** AI tools integration, Claude/Cursor workflows
- Direct integration with AI development environments
- Natural language interface for data extraction
- Context-aware data retrieval
- Seamless workflow integration
[Setup MCP Server →](/docs/mcp-server/local-server/installation)
**Best for:** Workflow automation, no-code solutions
- Visual workflow builder
- Pre-built automation templates
- Scheduled data extraction
- Integration with 400+ other services
[Install n8n Nodes →](/docs/n8n-nodes/installation)
Be mindful of rate limits to ensure optimal performance:
Always implement exponential backoff for retries and respect platform-specific guidelines.
Pro Tips:
Complete API reference and guides
Interactive API documentation
Open source examples and tools