Profiles
List
List all active profiles for your project, paginated and ordered newest-first.
Endpoint
GET https://api.postpeer.dev/v1/profilesQuery Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
page | integer | No | Page number (1-indexed). Defaults to 1. |
limit | integer | No | Page size, between 1 and 100. Defaults to 50. |
Example
curl "https://api.postpeer.dev/v1/profiles?page=1&limit=20" \
-H "x-access-key: YOUR_API_KEY"Response
{
"success": true,
"total": 2,
"page": 1,
"limit": 20,
"profiles": [
{
"id": "65ab...",
"name": "Acme Co",
"description": "Marketing accounts",
"integrationCount": 3,
"createdAt": "2026-05-03T08:33:36.445Z",
"updatedAt": "2026-05-03T08:33:36.445Z"
},
{
"id": "65ac...",
"name": "Personal",
"description": null,
"integrationCount": 1,
"createdAt": "2026-05-02T17:11:02.000Z",
"updatedAt": "2026-05-02T17:11:02.000Z"
}
]
}integrationCount is computed from currently active (non-deleted) integrations bound to each profile.
Status Codes
| Code | Meaning |
|---|---|
200 | Success |