Skip to main content
GET
/
subscribers
/
{id}
Get a subscriber
curl --request GET \
  --url https://app.letterbucket.com/api/v1/subscribers/{id} \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "email": "[email protected]",
    "name": "<string>",
    "created_at": "2023-11-07T05:31:56Z"
  }
}
Single-subscriber reads are cached for up to 1 hour. See Caching.

Authorizations

Authorization
string
header
required

Your API key, sent as Authorization: Bearer sk_....

Path Parameters

id
string<uuid>
required

Subscriber ID (UUID).

Response

The subscriber.

success
boolean
data
object