API-Referenz
Die Vertical Viral API ist asynchron: Sie reichen ein Ziel ein, und wir senden die strukturierten JSON-Daten über einen Webhook an Ihre Server, sobald die Extraktion vollständig sicher abgeschlossen ist.
Authentifizierung
Alle API-Anfragen müssen mit einem Bearer-Token authentifiziert werden. Erstellen Sie Ihren geheimen API-Schlüssel hier: Entwickler-Dashboard.
Teilen Sie niemals Ihre geheimen Schlüssel. Committen Sie sie nicht auf GitHub oder Frontend-Code.
curl -X POST https://verticalviral.io/api/scrape/reelsanalyzer \
-H "Authorization: Bearer vv_live_xt789..." \
-H "Content-Type: application/json"Instagram Reels Analyzer
Startet eine asynchrone Stealth-Sitzung in unserem Proxy-Netzwerk.
Anfrage-Body
nikecurl -X POST https://verticalviral.io/api/scrape/reelsanalyzer \
-H "Authorization: Bearer " \
-H "Content-Type: application/json" \
-d '{
"target_username": "mosbius",
"webhook_url": "https://your-server.com/webhooks/vv",
"depth": 50
}'Sync-Antwort (200 OK)
Die sofortige Antwort bestätigt die Einreihung. Speichern Sie die job_id ab.
{
"status": "queued",
"job_id": "job_8f2b3c4d5e",
"message": "Extraction started. Data will be sent to your webhook."
}Instagram Profile Scraper
Collects comprehensive target profile information (subscribers, business flag, public emails, and bio context).
Anfrage-Body
Webhook Lieferung
Sobald der Extraktionsprozess endet (normalerweise 20-30 Sek.), feuern wir den JSON an Ihre webhook_url.
Zentrale Schlüssel im Payload
{
"id": "job_8f2b3c4d5e",
"status": "completed",
"target": "mosbius",
"data": {
"profile_stats": {
"followers": 145200,
"extracted_emails": ["hello@mosbius.com"]
},
"reels": [
{
"shortcode": "C9Z8A7X",
"views": 1245000,
"likes": 89000,
"magnetism_score": 9.8,
"outlier_status": true
}
]
}
}Fehler & Grenzen
Standard HTTP Netzwerchantworten.
Instagram Comment Scraper
Parses up to 500 top-level comments and replies directly from an Instagram Post URL.
Anfrage-Body