List Recipients

List all recipients for your team.

GET https://api.notifiedby.com/v1/recipients/

Success Response (200):

Returns an array of recipient objects:

[
    {
        "sqid": "abc123",
        "email": "user@example.com",
        "first_name": "John",
        "last_name": "Doe",
        "flags": ["premium", "active"],
        "has_been_sent_email": true,
        "created_at": "2026-02-17T09:00:00Z",
        "updated_at": "2026-02-17T09:00:00Z"
    }
]

Example with curl:

curl -X GET https://api.notifiedby.com/v1/recipients/ \
    -H "Authorization: Api-Key YOUR_API_KEY"