Skip to main content
GET
/
v1
/
accounts
/
{id}
curl https://api.infinipost.co/v1/accounts/acc_1a2b3c4d5e \
  -H "Authorization: Bearer YOUR_API_KEY"
{
  "id": "acc_1a2b3c4d5e",
  "platform": "tiktok",
  "name": "Fashion Insider",
  "username": "fashioninsider",
  "bio": "Daily fashion tips and trends 👗",
  "profilePictureUrl": "https://storage.googleapis.com/...",
  "status": "active",
  "stats": {
    "followers": 1247,
    "following": 523,
    "posts": 42,
    "totalViews": 18293
  },
  "warmupStatus": {
    "enabled": true,
    "currentDay": 7,
    "completedAt": "2024-04-21T10:00:00Z"
  },
  "createdAt": "2024-04-14T19:30:00Z"
}

Path Parameters

id
string
required
The unique account identifier.

Response

id
string
Unique identifier for the account.
platform
string
Platform: tiktok or instagram.
name
string
Account display name.
username
string
Account username.
bio
string
Account bio/description.
profilePictureUrl
string
URL of the profile picture.
status
string
Current status: pending, active, warmup, or failed.
stats
object
Account statistics.
warmupStatus
object
Warmup details.
createdAt
string
ISO 8601 timestamp.
curl https://api.infinipost.co/v1/accounts/acc_1a2b3c4d5e \
  -H "Authorization: Bearer YOUR_API_KEY"
{
  "id": "acc_1a2b3c4d5e",
  "platform": "tiktok",
  "name": "Fashion Insider",
  "username": "fashioninsider",
  "bio": "Daily fashion tips and trends 👗",
  "profilePictureUrl": "https://storage.googleapis.com/...",
  "status": "active",
  "stats": {
    "followers": 1247,
    "following": 523,
    "posts": 42,
    "totalViews": 18293
  },
  "warmupStatus": {
    "enabled": true,
    "currentDay": 7,
    "completedAt": "2024-04-21T10:00:00Z"
  },
  "createdAt": "2024-04-14T19:30:00Z"
}