| title | API Reference |
|---|---|
| description | Complete reference for the WebLinq API |
Welcome to the WebLinq API documentation. Our REST API enables powerful web automation, content extraction, and data transformation capabilities.
https://api.weblinq.dev/v1All endpoints require authentication using a Bearer token:
curl -H "Authorization: Bearer YOUR_API_KEY" https://api.weblinq.dev/v1/...Get your API key from the dashboard.
[Create an API key](https://weblinq.dev/dashboard/api-keys) from your dashboard. Try extracting content from a webpage:```bash
curl -X POST "https://api.weblinq.dev/v1/web/markdown" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"url": "https://example.com"}'
```
All responses follow a consistent structure:
{
"success": true,
"data": {
// Response data
},
"creditsCost": 1
}For detailed information about endpoints, error handling, and rate limits, see the API overview.