Skip to content
GET /v1/posts

A creator's recent photo posts

Try it live

10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.

Custom headers (optional)
api.oanor.com/pixelfed-api

It works. Grab an API key and use it in your project.

Get an API key

Code snippets

curl "https://api.oanor.com/pixelfed-api/v1/posts" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/pixelfed-api/v1/posts", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/pixelfed-api/v1/posts");
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/posts",
    headers={"x-oanor-key": "oanor_test_..."}
)

Example response

A real response from this endpoint, captured by the latest health check.

{
    "data": {
        "user": "dansup",
        "count": 10,
        "posts": [
            {
                "url": "https://pixelfed.social/p/dansup/968549570111641933",
                "caption": "Star trails over the trees last night #astrophotography #StarTrails #SeeStarS30Pro",
                "hashtags": [
                    "astrophotography",
                    "StarTrails",
                    "SeeStarS30Pro"
                ],
                "image_url": "https://pxscdn.com/public/m/_v2/2/b5862bd14-4506fa/aLMuHeX6b1MW/SySEub9rtS0kmm8PVjM06tTZy09KnXOU5ykbTLAT.jpg",
                "published": "2026-06-05T16:30:12.000Z"
            },
            {
                "url": "https://pixelfed.social/p/dansup/965272699071587926",
                "caption": "Howdy partner 🤠 #dogsOfPixelfed",
                "hashtags": [
                    "dogsOfPixelfed"
                ],
                "image_url": "https://pxscdn.com/public/m/_v2/2/0d402c64b-2701fc/6Lysmem0eKcc/wMcgO34l96uFriAgyWMHD5cjaWYtczWrhListapj.jpg",
                "published": "2026-05-27T15:29:05.000Z"
            },
            {
                "url": "https://pixelfed.social/p/dansup/965257116732349206",
                "caption": "One year old and already a flower connoisseur 🌼 #Jake #LabsOfPixelfed #Dogs #DogsOfPixelfed #BoopTheBloom",
                "hashtags": [
                    "Jake",
                    "LabsOfPixelfed",
                    "Dogs",
                    "DogsOfPixelfed",
                    "BoopTheBloom"
                ],
                "image_url": "https://pxscdn.com/public/m/_v2/2/0d402c64b-2701fc/VxFJORg41OVz/dUXg16Id8hvr595dD22RD4oGVBbm4Wmc6A3NOdBr.jpg",
                "published": "2026-05-27T14:27:10.000Z"
            },
            {
                "url": "https://pixelfed.social/p/dansup/964520737452049780",
                "caption": "Stanley Theatre. Taken last summer during #FediCon in Vancouver.",
                "hashtags": [
                    "FediCon"
                ],
                "image_url": "https://pxscdn.com/public/m/_v2/2/0d402c64b-2701fc/ovgpOmIJLhP1/hSKjKfUwvF60JnpdOGOSmBFPlvkhybQxhJyEBBHE.jpg",
                "published": "2026-05-25T13:41:03.000Z"
            },
            {
                "url": "https://pixelfed.social/p/dansup/963221206106723741",
                "caption": "Zeta Draconis #astrophotography #space #zetaDraconis",
                "hashtags": [
                    "astrophotography",
                    "space",
                    "zetaDraconis"
                ],
                "image_url": "https://pxscdn.com/public/m/_v2/2/0d402c64b-2701fc/E3fLgQw5Udtw/S1SaqV7pziRRWDipB65JyrFeykvl5NQ3GEye1D5Y.jpg",
                "published": "2026-05-21T23:37:11.000Z"
            },
            {
                "url": "https://pixelfed.social/p/dansup/963193430326364340",
                "caption": "Crescent Moon 🌙 #moon #lunar #astrophotography",
                "hashtags": [
                 
…