/api/v1/hashtags/media
Media by hashtag
Posts zu einem Hashtag. Query: hashtag, count.
Pruébalo en vivo
10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.
Funciona. Consigue una clave API y úsala en tu proyecto.
Obtener una clave APIFragmentos de código
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_..."}
)
Respuesta de ejemplo
Una respuesta real de este endpoint, capturada en la última comprobación de estado.
{
"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
}