accounts
List accounts
Returns connected social accounts. Only includes accounts within the plan limit by default. Follower data requires analytics add-on.
AuthorizationBearer <token>
API key authentication - use your Late API key as a Bearer token
In: header
Query Parameters
profileId?string
Filter accounts by profile ID
includeOverLimit?boolean
When true, includes accounts from over-limit profiles.
Default
falseResponse Body
application/json
application/json
curl -X GET "https://getlate.dev/api/v1/accounts"{
"accounts": [
{
"_id": "64e1...",
"platform": "twitter",
"profileId": {
"_id": "64f0...",
"name": "My Brand",
"slug": "my-brand"
},
"username": "@acme",
"displayName": "Acme",
"profileUrl": "https://x.com/acme",
"isActive": true
}
],
"hasAnalyticsAccess": false
}{
"error": "Unauthorized"
}