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

User profile

Vollständiges Profil per Username oder ID. Query: id_or_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/profile" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/instagram-api/api/v1/users/profile", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/instagram-api/api/v1/users/profile");
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/profile",
    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",
        "pronouns": [],
        "username": "jlo",
        "bio_links": [
            {
                "url": "https://onthejlo.com/en/home",
                "title": "ON THE JLO - JLovers HQ",
                "lynx_url": "https://l.instagram.com/?u=https%3A%2F%2Fonthejlo.com%2Fen%2Fhome&e=AUB0ED9C6iCq3Kcla3y2Y3LUuI00W1wg--kvdIKf_gMTbIxurLF5Zb_Des4hUvaefnvq2EvxIb60NsujH9JwUm2_7lCUkd8d",
                "link_type": "external"
            },
            {
                "url": "https://davidguetta.lnk.to/savemetonight",
                "title": "SAVE ME TONIGHT New Single OUT NOW",
                "lynx_url": "https://l.instagram.com/?u=https%3A%2F%2Fdavidguetta.lnk.to%2Fsavemetonight&e=AUAzORoh56dbDMPk1jgFyAnEc47gb7aE3BG5NLNNWlOgzt-N4A3Fv1LpekrTk5LRLjYiBNTPGNWIOl7HAJ1WC7gxP7Tlenuf",
                "link_type": "external"
            }
        ],
        "biography": "The #1 Single SAVE ME TONIGHT with David Guetta OUT NOW 💫 OFFICE ROMANCE coming to Netflix June 5",
        "full_name": "Jennifer Lopez",
        "is_private": false,
        "is_verified": true,
        "posts_count": 1151,
        "external_url": "https://onthejlo.com/en/home",
        "follower_count": 245706422,
        "following_count": 1960,
        "profile_pic_url": "https://image.proxy.oanor.com/fetch?url=https%3A%2F%2Finstagram.fbma5-1.fna.fbcdn.net%2Fv%2Ft51.82787-19%2F628483964_18589580959037720_5020244042765827468_n.jpg%3Fstp%3Ddst-jpg_s150x150_tt6%26efg%3DeyJ2ZW5jb2RlX3RhZyI6InByb2ZpbGVfcGljLmRqYW5nby42NzcuYzIifQ%26_nc_ht%3Dinstagram.fbma5-1.fna.fbcdn.net%26_nc_cat%3D1%26_nc_oc%3DQ6cZ2gFGemGAj6aEHPrZGDQgU3-ErtOFgNNsWjYOzNg4vyp4IBn5SrdWgk_9flGcxC7XrNc%26_nc_ohc%3DTX2rtoR-q-8Q7kNvwH1gBJM%26_nc_gid%3DJOqElFUHza3rIqC_UoOOFg%26edm%3DAOQ1c0wBAAAA%26ccb%3D7-5%26oh%3D00_Af7e3Ak5B1vQMM-cvmKSBinUCuGJUaWNCvfBxCx_HXbQ-g%26oe%3D69FE8330%26_nc_sid%3D8b3546",
        "business_category": null,
        "profile_pic_url_hd": "https://image.proxy.oanor.com/fetch?url=https%3A%2F%2Finstagram.fbma5-1.fna.fbcdn.net%2Fv%2Ft51.82787-19%2F628483964_18589580959037720_5020244042765827468_n.jpg%3Fstp%3Ddst-jpg_s320x320_tt6%26efg%3DeyJ2ZW5jb2RlX3RhZyI6InByb2ZpbGVfcGljLmRqYW5nby42NzcuYzIifQ%26_nc_ht%3Dinstagram.fbma5-1.fna.fbcdn.net%26_nc_cat%3D1%26_nc_oc%3DQ6cZ2gFGemGAj6aEHPrZGDQgU3-ErtOFgNNsWjYOzNg4vyp4IBn5SrdWgk_9flGcxC7XrNc%26_nc_ohc%3DTX2rtoR-q-8Q7kNvwH1gBJM%26_nc_gid%3DJOqElFUHza3rIqC_UoOOFg%26edm%3DAOQ1c0wBAAAA%26ccb%3D7-5%26oh%3D00_Af6OE8tbVPg7EfnoVVA_5poBa27TsOV_RItWJKYtfbCRWg%26oe%3D69FE8330%26_nc_sid%3D8b3546",
        "is_business_account": false,
        "is_professional_account": true
    },
    "meta": {
        "timestamp": "2026-05-04T13:59:55.746Z",
        "request_id": "9ca93a6e-3659-4342-b8cb-4c882bb0e44a"
    },
    "status": "ok",
    "message": "User profile retrieved successfully",
    "success": true
}