Getting started
Guides
Endpoints
- Accounts
- Broadcasts
- Custom Fields
- Forms
- Subscribers
- Tags
- Email Templates
- Purchases
- Segments
- Sequences
- Webhooks
Accounts
Get current account
GET
/
v4
/
account
Copy
Ask AI
curl --request GET \
--url https://api.kit.com/v4/account \
--header 'X-Kit-Api-Key: <api-key>'
Copy
Ask AI
{
"user": {
"email": "[email protected]"
},
"account": {
"id": 31474,
"name": "Kit Greetings",
"plan_type": "creator",
"primary_email_address": "[email protected]",
"created_at": "2023-02-17T11:43:55Z",
"timezone": {
"name": "America/New_York",
"friendly_name": "Eastern Time (US & Canada)",
"utc_offset": "-05:00"
}
}
}
Authorizations
Authenticate API requests via an API Key
Response
200
application/json
Returns current account and user info
The response is of type object
.
Copy
Ask AI
curl --request GET \
--url https://api.kit.com/v4/account \
--header 'X-Kit-Api-Key: <api-key>'
Copy
Ask AI
{
"user": {
"email": "[email protected]"
},
"account": {
"id": 31474,
"name": "Kit Greetings",
"plan_type": "creator",
"primary_email_address": "[email protected]",
"created_at": "2023-02-17T11:43:55Z",
"timezone": {
"name": "America/New_York",
"friendly_name": "Eastern Time (US & Canada)",
"utc_offset": "-05:00"
}
}
}
Assistant
Responses are generated using AI and may contain mistakes.