get https://a.klaviyo.com/api/accounts/
Retrieve a single account object by its account ID. You can only request the account by which the private API key was generated.
Rate limits:
Burst: 1/s
Steady: 15/m
Scopes:
accounts:read
Responses
Retrieve a single account object by its account ID. You can only request the account by which the private API key was generated.
Rate limits:
Burst: 1/s
Steady: 15/m
Scopes:
accounts:read
xxxxxxxxxx
curl --request GET \
--url https://a.klaviyo.com/api/accounts/id \
--header 'Authorization: Klaviyo-API-Key your-private-api-key' \
--header 'accept: application/vnd.api+json' \
--header 'revision: 2025-01-15'
xxxxxxxxxx
31{
"data": {
"type": "account",
"id": "string",
"attributes": {
"test_account": true,
"contact_information": {
"default_sender_name": "Klaviyo Demo",
"default_sender_email": "contact@klaviyo-demo.com",
"website_url": "https://www.klaviyo.com",
"organization_name": "Klaviyo Demo",
"street_address": {
"address1": "125 Summer Street",
"address2": "5th Floor",
"city": "Boston",
"region": "MA",
"country": "US",
"zip": "04323"
}
},
"industry": "Software / SaaS",
"timezone": "US/Eastern",
"preferred_currency": "USD",
"public_api_key": "AbC123",
"locale": "en-US"
},
"links": {
"self": "string"
}
}
}