Getting started
Guides
Endpoints
- Accounts
- Broadcasts
- Custom Fields
- Forms
- Subscribers
- Tags
- Email Templates
- Purchases
- Segments
- Sequences
- Webhooks
Tags
List subscribers for a tag
GET
/
v4
/
tags
/
{tag_id}
/
subscribers
Copy
Ask AI
curl --request GET \
--url https://api.kit.com/v4/tags/{tag_id}/subscribers \
--header 'X-Kit-Api-Key: <api-key>'
Copy
Ask AI
{
"subscribers": [
{
"id": 16638,
"first_name": null,
"email_address": "[email protected]",
"state": "active",
"created_at": "2023-02-17T11:43:55Z",
"tagged_at": "2023-02-17T11:43:55Z",
"fields": {
"category": "One"
}
},
{
"id": 16637,
"first_name": null,
"email_address": "[email protected]",
"state": "active",
"created_at": "2023-02-17T11:43:55Z",
"tagged_at": "2023-02-17T11:43:55Z",
"fields": {
"category": null
}
},
{
"id": 16636,
"first_name": null,
"email_address": "[email protected]",
"state": "active",
"created_at": "2023-02-17T11:43:55Z",
"tagged_at": "2023-02-17T11:43:55Z",
"fields": {
"category": null
}
}
],
"pagination": {
"has_previous_page": false,
"has_next_page": false,
"start_cursor": "WyIyMDIzLTAyLTE3VDExOjQzOjU1LjAwMFoiLDEyODZd",
"end_cursor": "WyIyMDIzLTAyLTE3VDExOjQzOjU1LjAwMFoiLDEyODRd",
"per_page": 500
}
}
Authorizations
Authenticate API requests via an API Key
Path Parameters
Query Parameters
Response
200
application/json
Returns a paginated list of subscribers for the specified tag
The response is of type object
.
Copy
Ask AI
curl --request GET \
--url https://api.kit.com/v4/tags/{tag_id}/subscribers \
--header 'X-Kit-Api-Key: <api-key>'
Copy
Ask AI
{
"subscribers": [
{
"id": 16638,
"first_name": null,
"email_address": "[email protected]",
"state": "active",
"created_at": "2023-02-17T11:43:55Z",
"tagged_at": "2023-02-17T11:43:55Z",
"fields": {
"category": "One"
}
},
{
"id": 16637,
"first_name": null,
"email_address": "[email protected]",
"state": "active",
"created_at": "2023-02-17T11:43:55Z",
"tagged_at": "2023-02-17T11:43:55Z",
"fields": {
"category": null
}
},
{
"id": 16636,
"first_name": null,
"email_address": "[email protected]",
"state": "active",
"created_at": "2023-02-17T11:43:55Z",
"tagged_at": "2023-02-17T11:43:55Z",
"fields": {
"category": null
}
}
],
"pagination": {
"has_previous_page": false,
"has_next_page": false,
"start_cursor": "WyIyMDIzLTAyLTE3VDExOjQzOjU1LjAwMFoiLDEyODZd",
"end_cursor": "WyIyMDIzLTAyLTE3VDExOjQzOjU1LjAwMFoiLDEyODRd",
"per_page": 500
}
}
Assistant
Responses are generated using AI and may contain mistakes.