Skip to main content
GET
/
api
/
late
/
profile
List the caller's Late profiles
curl --request GET \
  --url https://app.puffle.ai/api/late/profile \
  --header 'Authorization: Bearer <token>'
{
  "profiles": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "user_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "late_profile_id": "<string>",
      "late_profile_name": "<string>",
      "timezone": "<string>",
      "created_at": "2023-11-07T05:31:56Z",
      "updated_at": "2023-11-07T05:31:56Z"
    }
  ]
}

Overview

Returns every user_profiles row owned by the caller. Each row typically maps 1:1 to a connected social account — the Late profile is the container Late uses to group one account’s state.

AI agent notes

For account-level data, prefer listSocialAccounts. This endpoint returns profile-level metadata only (timezone, Late profile ID, etc.), not the accounts themselves.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

Profiles returned (possibly empty).

profiles
object[]
required