curl --request GET \
--url https://api.paubox.net/v1/orca/{username}/subscribers \
--header 'authorization: <api-key>'{
"data": [
{
"id": "<string>",
"type": "subscriber",
"attributes": {
"email": "jsmith@example.com",
"unsubscribed": true,
"first_name": "<string>",
"last_name": "<string>"
}
}
]
}Return json data about subscribers
curl --request GET \
--url https://api.paubox.net/v1/orca/{username}/subscribers \
--header 'authorization: <api-key>'{
"data": [
{
"id": "<string>",
"type": "subscriber",
"attributes": {
"email": "jsmith@example.com",
"unsubscribed": true,
"first_name": "<string>",
"last_name": "<string>"
}
}
]
}Documentation Index
Fetch the complete documentation index at: https://docs.paubox.com/llms.txt
Use this file to discover all available pages before exploring further.
Token-based authentication. Use format: "Token token=<API_KEY>" where <API_KEY> is your API key
Number of records to return
1 <= x <= 1000For pagination of results
x >= 1Search term
^[a-zA-Z0-9\s]*$Field to order by
first_name, last_name, email, created_at, updated_at Order direction
asc, desc Filter by subscription list ID (defaults to all subscribers/default subscription list)
Successful response
Show child attributes