RL AnalytiX API
A hosted, multi-purpose API maintained by RL AnalytiX — providing reliable data extraction and processing tools for your applications.
Quick Start
- Register at app.rl-analytix.de and verify your email.
- Create an API key on the Keys page (
/keys/create). - Send your first request — include the key in the
X-API-Keyheader:
curl -X POST 'https://api.rl-analytix.de/v1/scrape/' \
-H 'X-API-Key: rlx_YOUR_API_KEY' \
-H 'Content-Type: application/json' \
-d '{"url": "https://example.com"}'
import requests
response = requests.post(
"https://api.rl-analytix.de/v1/scrape/",
headers={"X-API-Key": "your_api_key_here"},
json={"url": "https://example.com"},
)
Available Endpoints
Web Scraping
| Endpoint | Description |
|---|---|
POST /v1/scrape/ |
Scrape a single URL |
POST /v1/scrape/batch |
Scrape up to 50 URLs in one request |
POST /v1/scrape/crawl |
Crawl a website starting from a seed URL |
Base URL: https://api.rl-analytix.de
Key Limits
| Item | Limit |
|---|---|
| Batch size | 50 URLs per request |
| Crawl pages | Up to 500 pages per crawl |
| Crawl depth | Up to 10 levels |
| Concurrency | 10 pages fetched in parallel |
| Request timeout | 30 seconds per page |
| Text content | Truncated at 5 000 characters |
Documentation
- Getting Started — account setup, API keys, dashboard, and usage log
- Endpoint Reference — full parameter and response schema reference for all scraping endpoints
If you need any help or found Bugs, report it to api@rl-analytix.de