Skip to main content
Connect

List integrations connected to this project

GET/v1/connect/integrations

Authorization

accessKey
x-access-key<token>

In: header

Query Parameters

platform?string
Value in"twitter" | "instagram" | "youtube" | "tiktok" | "pinterest" | "linkedin" | "bluesky"
profileId?string

Filter to integrations belonging to this profile. Pass "null" (literal string) to filter to integrations with no profile.

page?integer

Page number

Default1
Range1 <= value
limit?integer

Page size (1-100)

Default50
Range1 <= value <= 100

Response Body

application/json

curl -X GET "https://api.postpeer.dev/v1/connect/integrations"
{
  "success": true,
  "total": 0,
  "page": 1,
  "limit": 1,
  "integrations": [
    {
      "id": "string",
      "platform": "twitter",
      "platformUserId": "string",
      "displayName": "string",
      "imageUrl": "http://example.com",
      "profileId": "string",
      "createdAt": "2019-08-24T14:15:22Z"
    }
  ]
}