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>",
      "isActive": true,
      "username": "<string>",
      "name": "<string>",
      "profilePictureUrl": "<string>"
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.reap.video/llms.txt

Use this file to discover all available pages before exploring further.

For AI agents: a documentation index is at /llms.txt. Every page is also available as markdown, just append .md to the URL.

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[]