ActionBlueskyUpdated September 2026

How do I fetch a Bluesky user's posts?

Short answer: You can get author feed in Bluesky by hand from its own interface, but it won’t repeat itself. On TinyCommand, add the Bluesky Get Author Feed action to a workflow, map its 3 inputs from any upstream app, and it runs automatically every time the trigger fires. No code, and a free tier to start.

Get Author Feed in Bluesky — start free
Inputs

The fields this action accepts.

Every field can be mapped from an upstream trigger, AI step, table row, or hard-coded literal.

FieldTypeRequiredDescription
Access JWT
accessJwt
stringRequired
Actor Handle or DID
actor
stringRequired
Limit
limit
stringOptional
Sample request
{
"accessJwt": "{{trigger.accessJwt}}",
"actor": "{{trigger.actor}}",
"limit": "{{trigger.limit}}"
}
Returns
{
"feed": [
{
"post": {
"cid": "bafy...",
"uri": "at://...",
"author": {
"handle": "you.bsky.social"
},
"record": {
"text": "Hello"
}
}
}
]
}

Use these fields in downstream nodes for routing, logging, or error handling.

Triggered by

Apps that pair well as the trigger for Get Author Feed.

Any of these apps can fire this action as part of a workflow.

FAQ

Questions about Get Author Feed.

What does the Get Author Feed action do in Bluesky?
Returns paginated posts from a specific handle. Useful for "monitor this competitor's Bluesky activity" or "show recent posts from team members on the company blog" workflows.
What inputs does Get Author Feed require?
Required: Access JWT, Actor Handle or DID. Every input accepts a static value or a variable from any upstream node in your workflow.
Can I use dynamic inputs from earlier workflow nodes?
Yes. Any field on this action can pull values from upstream nodes, whether that's a form response, a trigger payload, an AI output, or a lookup result.
What happens if Bluesky returns an error?
The run history shows the failed step with its input and the error message Bluesky returned, so you can fix the input and run the workflow again. Automatic retries are built into HTTP steps only, where you can also set your own retry count and delay.
Does Get Author Feed support batch operations?
Run Get Author Feed inside a loop to process each item in an array. TinyCommand does not throttle calls for you, so for large arrays add a Delay step if you need to stay within Bluesky's rate limits.
More actions

Other Bluesky actions.

Get Author Feed in Bluesky — start free