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

Search hashtags

Hashtag-Suche per Volltext. Query: q, count.

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

Beispiel-Response

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

{
    "data": {
        "count": 10,
        "source": "brave_instagram_search",
        "hashtags": [
            {
                "link": "https://www.instagram.com/explore/tags/footballpost/",
                "name": "footballpost",
                "hashtag": "#footballpost"
            },
            {
                "link": "https://www.instagram.com/explore/tags/footballprogram/",
                "name": "footballprogram",
                "hashtag": "#footballprogram"
            },
            {
                "link": "https://www.instagram.com/explore/tags/villagefootball/",
                "name": "villagefootball",
                "hashtag": "#villagefootball"
            },
            {
                "link": "https://www.instagram.com/explore/tags/uofhfootball/",
                "name": "uofhfootball",
                "hashtag": "#uofhfootball"
            },
            {
                "link": "https://www.instagram.com/explore/tags/footballinterview/",
                "name": "footballinterview",
                "hashtag": "#footballinterview"
            },
            {
                "link": "https://www.instagram.com/explore/tags/novemberfootball/",
                "name": "novemberfootball",
                "hashtag": "#novemberfootball"
            },
            {
                "link": "https://www.instagram.com/explore/tags/collegefootballhighlights/",
                "name": "collegefootballhighlights",
                "hashtag": "#collegefootballhighlights"
            },
            {
                "link": "https://www.instagram.com/explore/tags/footballshowcase/",
                "name": "footballshowcase",
                "hashtag": "#footballshowcase"
            },
            {
                "link": "https://www.instagram.com/explore/tags/footballclips/",
                "name": "footballclips",
                "hashtag": "#footballclips"
            },
            {
                "link": "https://www.instagram.com/explore/tags/footballand/",
                "name": "footballand",
                "hashtag": "#footballand"
            }
        ]
    },
    "meta": {
        "timestamp": "2026-05-04T14:00:20.929Z",
        "request_id": "3c5a2cdd-a7d2-49b9-a33c-cb5272e63e9f"
    },
    "status": "ok",
    "message": "Hashtags retrieved successfully",
    "success": true
}