Zum Inhalt springen
GET /v1/users/detail

User detail

Live testen

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

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

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

API-Key holen

Code-Snippets

curl "https://api.oanor.com/snapchat-api/v1/users/detail" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/snapchat-api/v1/users/detail", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/snapchat-api/v1/users/detail");
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/snapchat-api/v1/users/detail",
    headers={"x-oanor-key": "oanor_test_..."}
)

Beispiel-Response

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

{
    "data": {
        "id": "d278c2a0-5c8e-447b-8711-cfca0c15ca07",
        "bio": "🤝",
        "link": "https://www.snapchat.com/add/jlo",
        "badge": 0,
        "title": "Jonathan",
        "address": null,
        "category": "public-profile-category-v3-people",
        "username": "jlo",
        "has_story": false,
        "subcategory": "public-profile-subcategory-v3-entrepreneur",
        "website_url": null,
        "display_name": "Jonathan",
        "subscriber_count": 57200,
        "snapcode_image_url": "https://app.snapchat.com/web/deeplink/snapcode?username=jlo&type=SVG&bitmoji=enable",
        "business_profile_id": "a2d94d79-6df1-46de-a0a8-75b63b26bcbd",
        "profile_picture_url": "https://cf-st.sc-cdn.net/aps/bolt/aHR0cHM6Ly9jZi1zdC5zYy1jZG4ubmV0L2QvRWFaNEpvN3hBajNUYVVtbElPUVM3P2JvPUVnMGFBQm9BTWdFRVNBSlFHV0FCJnVjPTI1._RS0,90_FMjpeg",
        "creation_timestamp_ms": 1602696719006,
        "has_curated_highlights": false,
        "has_spotlight_highlights": false,
        "last_update_timestamp_ms": 1776456953897
    },
    "meta": {
        "timestamp": "2026-05-04T13:59:42.906Z",
        "request_id": "060525e6-f31e-4951-835f-761576750787"
    },
    "status": "ok",
    "message": "User detail retrieved successfully",
    "success": true
}