Skip to main content
Profiles

Get

Retrieve a single profile, including the count of active integrations bound to it.

Endpoint

GET https://api.postpeer.dev/v1/profiles/{id}

Path Parameters

ParameterTypeDescription
idstringProfile ID

Example

curl "https://api.postpeer.dev/v1/profiles/65ab123" \
  -H "x-access-key: YOUR_API_KEY"

Response

{
  "success": true,
  "profile": {
    "id": "65ab...",
    "name": "Acme Co",
    "description": "Marketing accounts",
    "integrationCount": 3,
    "createdAt": "2026-05-03T08:33:36.445Z",
    "updatedAt": "2026-05-03T08:33:36.445Z"
  }
}

Status Codes

CodeMeaning
200Success
400Invalid profile id
404Profile not found

On this page