Skip to main content
GET
/
v1
/
accounts
curl https://api.infinipost.co/v1/accounts?platform=tiktok&limit=10 \
  -H "Authorization: Bearer YOUR_API_KEY"
{
  "data": [
    {
      "id": "acc_1a2b3c4d5e",
      "platform": "tiktok",
      "name": "Fashion Insider",
      "username": "fashioninsider",
      "status": "active",
      "warmupStatus": {
        "enabled": true,
        "currentDay": 3
      },
      "createdAt": "2024-04-19T10:00:00Z"
    },
    {
      "id": "acc_9f8e7d6c5b",
      "platform": "tiktok",
      "name": "Tech Reviews",
      "username": "techreviews2024",
      "status": "warmup",
      "warmupStatus": {
        "enabled": true,
        "currentDay": 7
      },
      "createdAt": "2024-04-15T14:30:00Z"
    }
  ],
  "total": 23,
  "hasMore": true
}

Query Parameters

platform
string
Filter by platform: tiktok or instagram.
status
string
Filter by status: active, warmup, pending, or failed.
limit
number
default:"50"
Number of accounts to return (max 100).
offset
number
default:"0"
Number of accounts to skip for pagination.

Response

data
array
Array of account objects.
total
number
Total number of accounts matching the filters.
hasMore
boolean
Whether there are more accounts beyond this page.
curl https://api.infinipost.co/v1/accounts?platform=tiktok&limit=10 \
  -H "Authorization: Bearer YOUR_API_KEY"
{
  "data": [
    {
      "id": "acc_1a2b3c4d5e",
      "platform": "tiktok",
      "name": "Fashion Insider",
      "username": "fashioninsider",
      "status": "active",
      "warmupStatus": {
        "enabled": true,
        "currentDay": 3
      },
      "createdAt": "2024-04-19T10:00:00Z"
    },
    {
      "id": "acc_9f8e7d6c5b",
      "platform": "tiktok",
      "name": "Tech Reviews",
      "username": "techreviews2024",
      "status": "warmup",
      "warmupStatus": {
        "enabled": true,
        "currentDay": 7
      },
      "createdAt": "2024-04-15T14:30:00Z"
    }
  ],
  "total": 23,
  "hasMore": true
}