/v1/hashtags
A creator's most-used hashtags and activity
Essayez-le en direct
10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.
Ça marche. Récupérez une clé API et utilisez-la dans votre projet.
Obtenez une clé APIExtraits de code
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_..."}
)
Exemple de réponse
Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.
{
"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
}