Zum Inhalt springen
GET /api/v1/users/insights

User insights

Profile-Counter, Account-Flags, Business-Felder, Public-Kontakte. Query: username.

Live testen

10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.

Eigene Header (optional)
api.oanor.com/instagram-api

Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.

API-Key holen

Code-Snippets

curl "https://api.oanor.com/instagram-api/api/v1/users/insights" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/instagram-api/api/v1/users/insights", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/instagram-api/api/v1/users/insights");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
    "https://api.oanor.com/instagram-api/api/v1/users/insights",
    headers={"x-oanor-key": "oanor_test_..."}
)

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.

{
    "data": {
        "id": "305701719",
        "link": "https://www.instagram.com/jlo",
        "category": "Artist",
        "username": "jlo",
        "full_name": "Jennifer Lopez",
        "has_clips": true,
        "has_guides": false,
        "is_private": false,
        "has_channel": false,
        "is_verified": true,
        "media_count": 1151,
        "reels_count": 70,
        "external_url": "https://onthejlo.com/en/home",
        "follower_count": 245706423,
        "following_count": 1960,
        "public_contacts": {
            "business_email": null,
            "business_address_json": "{\"city_name\": null, \"city_id\": null, \"latitude\": null, \"longitude\": null, \"street_address\": null, \"zip_code\": null}",
            "business_phone_number": null,
            "business_contact_method": "TEXT",
            "should_show_public_contacts": true
        },
        "business_category": null,
        "is_business_account": false,
        "highlight_reel_count": 7,
        "is_professional_account": true
    },
    "meta": {
        "timestamp": "2026-05-04T13:59:57.580Z",
        "request_id": "1c0fd81f-de4b-4f11-b071-99b8a0945680"
    },
    "status": "ok",
    "message": "User insights retrieved successfully",
    "success": true
}