Naar de inhoud
GET /api/v1/hashtags/search

Search hashtags

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

Probeer het live

10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.

Aangepaste headers (optioneel)
api.oanor.com/instagram-api

Het werkt. Haal een API-key op en gebruik hem in je project.

Verkrijg een API-sleutel

Codefragmenten

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_..."}
)

Voorbeeldrespons

Een echte respons van dit endpoint, vastgelegd bij de laatste 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
}