Skip to main content
GET
/
automation
/
get-integrations
Get Integrations
curl --request GET \
  --url https://public.reap.video/api/v1/automation/get-integrations \
  --header 'Authorization: Bearer <token>'
{
  "integrations": [
    {
      "id": "<string>",
      "platform": "youtube",
      "isActive": true,
      "username": "<string>",
      "name": "<string>",
      "profilePictureUrl": "<string>"
    }
  ]
}

Overview

Retrieve all active social media integrations connected to your studio. Use this endpoint to get integration IDs needed for publishing and scheduling clips.

Rate Limiting

This endpoint is rate limited to 10 requests per minute per API key.
Integrations are connected and managed from your Reap dashboard. This endpoint only lists your active integrations.

Response

integrations
array
Array of active integration objects

Example Request

curl -X GET "https://public.reap.video/api/v1/automation/get-integrations" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json"

Example Response

Authorizations

Authorization
string
header
required

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

Response

200 - application/json

Successful response

integrations
object[]