> For the complete documentation index, see [llms.txt](https://docs.podigee.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.podigee.com/documentation/connect-and-administer/integrations/rest-api/rest-api-listeners.md).

# REST API listeners

Endpoints to invite, activate, deactivate, and verify private feed listeners in the REST API v1.

Use this reference when you manage the listeners of a protected (private) podcast from your own system. Paths are relative to `https://app.podigee.com/api/v1`.

The listener endpoints work on the listeners of the podcasts that the credential's account owns.

## Endpoints

| Method   | Path                                         | Purpose                                                 | Notable parameters                            | Response notes                                                                                                                                                                        |
| -------- | -------------------------------------------- | ------------------------------------------------------- | --------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `GET`    | `/listeners`                                 | List listeners                                          | `podcast_id` (one id)                         | Without `podcast_id`, returns the network listeners of the account owner, not the listeners of every podcast. `400` with `podcast_id must be a single id.` when you send several ids. |
| `GET`    | `/listeners/{listener_id}`                   | Read a listener                                         | none                                          |                                                                                                                                                                                       |
| `POST`   | `/listeners`                                 | Invite a listener                                       | `podcast_id`, `username`, `email`, `password` | The response includes the listener's feed `token`.                                                                                                                                    |
| `DELETE` | `/listeners/{listener_id}`                   | Delete a listener                                       | none                                          |                                                                                                                                                                                       |
| `POST`   | `/listeners/{podcast_id}/authorize`          | Verify a listener's credentials from an external system | Listener credentials                          | `401` with `Listener not authorized`; `404` with `Listener not found`.                                                                                                                |
| `POST`   | `/listeners/{listener_id}/activate`          | Set the listener status to active                       | none                                          |                                                                                                                                                                                       |
| `POST`   | `/listeners/{listener_id}/deactivate`        | Set the listener status to inactive                     | none                                          |                                                                                                                                                                                       |
| `POST`   | `/listeners/{listener_id}/password_reset`    | Send a password reset email to the listener             | none                                          |                                                                                                                                                                                       |
| `POST`   | `/listeners/{listener_id}/resend_invitation` | Send the invitation email again                         | none                                          | Only for a listener whose invitation is pending or was resent; otherwise `422` with `Listener don't have pending invitation`.                                                         |

## Listener statuses

| Status     | Meaning                                |
| ---------- | -------------------------------------- |
| `pending`  | The listener was invited.              |
| `resent`   | The invitation was sent again.         |
| `active`   | The listener can use the private feed. |
| `inactive` | The listener was deactivated.          |

## Related pages

* The agent tools for the same job: [Add a private feed listener](/documentation/start-here/ai-agents/manage-private-feed-access/add-a-private-feed-listener.md) and [List private feed listeners](/documentation/start-here/ai-agents/manage-private-feed-access/list-private-feed-listeners.md).
* [REST API authentication and errors](/documentation/connect-and-administer/integrations/rest-api/rest-api-authentication-and-errors.md)


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.podigee.com/documentation/connect-and-administer/integrations/rest-api/rest-api-listeners.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
