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

Search users

Sucht Instagram-Nutzer per Username/Text. Query: q.

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

Beispiel-Response

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

{
    "data": {
        "count": 9,
        "users": [
            {
                "id": null,
                "link": "https://www.instagram.com/jlo",
                "username": "jlo",
                "full_name": "Jennifer Lopez",
                "is_private": false,
                "is_verified": false,
                "media_count": 1151,
                "follower_count": 245706423,
                "following_count": 1960,
                "profile_pic_url": "https://scontent-ord5-3.cdninstagram.com/v/t51.82787-19/628483964_18589580959037720_5020244042765827468_n.jpg?stp=dst-jpg_s150x150_tt6&efg=eyJ2ZW5jb2RlX3RhZyI6InByb2ZpbGVfcGljLmRqYW5nby42NzcuYzIifQ&_nc_ht=scontent-ord5-3.cdninstagram.com&_nc_cat=1&_nc_oc=Q6cZ2gFHWnCfSCgzaRq_93fJ6O39lx1oMs6A3sD4joRJdnBHyMCieVMA_JJysIHI-eCzkIEqfbuJ2diFNZucrBlmw6AC&_nc_ohc=TX2rtoR-q-8Q7kNvwHOuzPb&_nc_gid=hu0lET8XSt6zjxCcO_yzMw&edm=AOQ1c0wBAAAA&ccb=7-5&oh=00_Af6oc9aAUTdO3v05gSTgrX8TU69g3js_ncynzvKWvqIZCg&oe=69FE8330&_nc_sid=8b3546",
                "profile_pic_url_hd": null
            },
            {
                "id": null,
                "link": "https://www.instagram.com/jlobeauty",
                "username": "jlobeauty",
                "full_name": "JLO Beauty by Jennifer Lopez",
                "is_private": false,
                "is_verified": false,
                "media_count": 1751,
                "follower_count": 1000000,
                "following_count": 353,
                "profile_pic_url": "https://scontent-lhr6-2.cdninstagram.com/v/t51.2885-19/399745629_1620237595172520_1329428741266874150_n.jpg?stp=dst-jpg_s150x150_tt6&efg=eyJ2ZW5jb2RlX3RhZyI6InByb2ZpbGVfcGljLmRqYW5nby4xMDc5LmMyIn0&_nc_ht=scontent-lhr6-2.cdninstagram.com&_nc_cat=100&_nc_oc=Q6cZ2gF7gU_PoM3IvHlwdu2IcsUxWFZb4Eh8RHTSvny-oIO5WcpyLq5tDj0vd9FL2wUzi4U&_nc_ohc=amqbbRYxL3gQ7kNvwHBbq74&_nc_gid=p2KfNYZjXJ4xGAqnWunsgA&edm=AOQ1c0wBAAAA&ccb=7-5&oh=00_Af4cP87nifqAOmrYw_3AuGZ7dG-Mw--0PkAu8sC0odopHw&oe=69FE792F&_nc_sid=8b3546",
                "profile_pic_url_hd": null
            },
            {
                "id": null,
                "link": "https://www.instagram.com/jlo_fashion",
                "username": "jlo_fashion",
                "full_name": "Jlo Fashion",
                "is_private": false,
                "is_verified": false,
                "media_count": 2504,
                "follower_count": 28000,
                "following_count": 6,
                "profile_pic_url": "https://instagram.fybz1-1.fna.fbcdn.net/v/t51.2885-19/41937672_261517281162259_4809645441966669824_n.jpg?stp=dst-jpg_s150x150_tt6&efg=eyJ2ZW5jb2RlX3RhZyI6InByb2ZpbGVfcGljLmRqYW5nby44OTcuYzIifQ&_nc_ht=instagram.fybz1-1.fna.fbcdn.net&_nc_cat=107&_nc_oc=Q6cZ2gEGWvOhKmnaKbwkzRyQRV22tMlxOJBE4RfjcGvH6tkPfctXWTRWFK3125vkfZtlTLQ&_nc_ohc=tZFLGuxua1sQ7kNvwGdA7Wi&_nc_gid=si4Ce71Peme_fYSDuW2q3A&edm=AOQ1c0wBAAAA&ccb=7-5&oh=00_Af6TXvVZ1HloJIURgMHOIq4B1ca1wraoO1v3KLbAkmLF9g&oe=69FE7A94&_nc_sid=8b3546",
                "profile_pic_url_hd": null
   
…