Skip to main content
GET
/
v1
/
bot
/
subscriber
/
readall
List Subscribers
curl --request GET \
  --url https://api.boostgpt.co/v1/bot/subscriber/readall \
  --header 'Authorization: Bearer <token>'
{
  "subscribers": [
    {
      "id": "<string>",
      "email": "<string>",
      "name": "<string>",
      "subscribed_at": "2023-11-07T05:31:56Z"
    }
  ],
  "pagination": {
    "page": 123,
    "per_page": 123,
    "total": 123,
    "total_pages": 123
  }
}

Authorizations

Authorization
string
header
required

Enter your API key

Query Parameters

project_id
string
required

Project ID

page
integer
default:1

Page number

per_page
integer
default:10

Items per page

Response

200 - application/json

Subscribers retrieved successfully

subscribers
object[]
pagination
object