/v1/hashtags
A creator's most-used hashtags and activity
Provalo dal vivo
10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.
Funziona. Prendi una chiave API e usala nel tuo progetto.
Ottieni una chiave APIFrammenti di codice
curl "https://api.oanor.com/pixelfed-api/v1/hashtags" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/pixelfed-api/v1/hashtags", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/pixelfed-api/v1/hashtags");
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/pixelfed-api/v1/hashtags",
headers={"x-oanor-key": "oanor_test_..."}
)
Risposta di esempio
Una risposta reale di questo endpoint, acquisita dall'ultimo health check.
{
"data": {
"user": "dansup",
"latest_post": "2026-06-05T16:30:12.000Z",
"top_hashtags": [
{
"tag": "astrophotography",
"count": 5
},
{
"tag": "dogsofpixelfed",
"count": 3
},
{
"tag": "space",
"count": 2
},
{
"tag": "startrails",
"count": 1
},
{
"tag": "seestars30pro",
"count": 1
},
{
"tag": "jake",
"count": 1
},
{
"tag": "labsofpixelfed",
"count": 1
},
{
"tag": "dogs",
"count": 1
},
{
"tag": "boopthebloom",
"count": 1
},
{
"tag": "fedicon",
"count": 1
},
{
"tag": "zetadraconis",
"count": 1
},
{
"tag": "moon",
"count": 1
},
{
"tag": "lunar",
"count": 1
},
{
"tag": "yellowlab",
"count": 1
}
],
"posts_analysed": 10,
"distinct_hashtags": 14
},
"meta": {
"timestamp": "2026-06-09T11:39:28.575Z",
"request_id": "67ab14d2-3131-410e-a0b1-0f6b567d755f"
},
"status": "ok",
"message": "Hashtags retrieved successfully",
"success": true
}