Naar de inhoud
GET /v1/hashtags

A creator's most-used hashtags and activity

Probeer het live

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

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

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

Verkrijg een API-sleutel

Codefragmenten

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

Voorbeeldrespons

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