get_profile_feed
Retrieve a Substack user's published content, including Notes and posts. Filter by type, paginate with a cursor, and default to your own account or pass a user_id for any other author.
Instructions
Read what one account has published — its Notes, its posts, or both. Defaults to your own account, so this is how to list the Notes you have written; pass user_id for anyone else.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| type | No | Filter what the profile returns: 'notes' for the Notes they wrote, 'posts' for what they published, 'all' (default) for both. | all |
| limit | No | How many entries to return. 1–50, defaults to 20. | |
| cursor | No | Resume from an earlier page: pass the `next_cursor` from a previous response. | |
| user_id | No | Whose profile to read. Defaults to SUBSTACK_USER_ID — your own. Take another user's id from `author_user_id` on any Note returned by get_reader_feed. |