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

Media by hashtag

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

Beispiel-Response

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

{
    "data": {
        "count": 10,
        "media": [
            {
                "code": "ChGvFgSjBo_",
                "link": "https://www.instagram.com/p/ChGvFgSjBo_/",
                "shortcode": "ChGvFgSjBo_",
                "matched_hashtag": "#football"
            },
            {
                "code": "B1dZa6QnSeg",
                "link": "https://www.instagram.com/p/B1dZa6QnSeg/",
                "shortcode": "B1dZa6QnSeg",
                "matched_hashtag": "#football"
            },
            {
                "code": "CmUY7wnt1dH",
                "link": "https://www.instagram.com/p/CmUY7wnt1dH/",
                "shortcode": "CmUY7wnt1dH",
                "matched_hashtag": "#football"
            },
            {
                "code": "ClN9K2cNTa-",
                "link": "https://www.instagram.com/p/ClN9K2cNTa-/",
                "shortcode": "ClN9K2cNTa-",
                "matched_hashtag": "#football"
            },
            {
                "code": "CwU1vwEsY7a",
                "link": "https://www.instagram.com/p/CwU1vwEsY7a/",
                "shortcode": "CwU1vwEsY7a",
                "matched_hashtag": "#football"
            },
            {
                "code": "DDZCZA7yImJ",
                "link": "https://www.instagram.com/p/DDZCZA7yImJ/",
                "shortcode": "DDZCZA7yImJ",
                "matched_hashtag": "#football"
            },
            {
                "code": "BjScegABoQs",
                "link": "https://www.instagram.com/p/BjScegABoQs/",
                "shortcode": "BjScegABoQs",
                "matched_hashtag": "#football"
            },
            {
                "code": "xRZwHlg0MD",
                "link": "https://www.instagram.com/p/xRZwHlg0MD/",
                "shortcode": "xRZwHlg0MD",
                "matched_hashtag": "#football"
            },
            {
                "code": "Cj8aDG2uqUV",
                "link": "https://www.instagram.com/p/Cj8aDG2uqUV/",
                "shortcode": "Cj8aDG2uqUV",
                "matched_hashtag": "#football"
            },
            {
                "code": "CrJ21rTP_6v",
                "link": "https://www.instagram.com/p/CrJ21rTP_6v/",
                "shortcode": "CrJ21rTP_6v",
                "matched_hashtag": "#football"
            }
        ],
        "source": "brave_instagram_search",
        "hashtag": "#football"
    },
    "meta": {
        "timestamp": "2026-05-04T14:00:24.827Z",
        "request_id": "ff5c2375-0754-4158-9c39-cbbcb639593c"
    },
    "status": "ok",
    "message": "Hashtag media retrieved successfully",
    "success": true
}