Skip to main content
Monitor accounts are the target companies your team wants Plyne to track on a schedule.
curl --request POST \
  --url 'https://api.plyne.ai/v1/monitor/accounts' \
  --header 'Authorization: Bearer plyne_...' \
  --header 'Content-Type: application/json' \
  --data '{
    "statuses": ["active"],
    "cursor": { "limit": 50 }
  }'
{
  "data": [
    {
      "id": "acc_123",
      "name": "Acme",
      "domain": "acme.com",
      "linkedin_url": "https://linkedin.com/company/acme",
      "score": 87,
      "signals_count": 5,
      "last_checked_at": "2026-06-15T08:00:00Z",
      "next_check_at": "2026-06-15T14:00:00Z"
    }
  ],
  "cursor": {
    "next": "",
    "has_more": false
  }
}
POST /v1/monitor/accounts

Authorizations

Authorizationstringheaderrequired

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

Body

statusesstring[]

Filter monitored accounts by status.

Example: [“active”]

cursor.limitinteger

Number of monitor accounts to return.

Example: 50

cursor.afterstring

Opaque cursor returned as cursor.next from the previous response.