1. Integrations (social)
Highperformr API
  • Introduction
  • Contacts
    • Unified Data API - async contact enrichment
      POST
    • Bulk fetch contacts by IDs
      POST
    • Get contacts by segment
      POST
    • Get contact by ID
      GET
    • Update contact
      PATCH
    • Delete contact
      DELETE
    • Upsert contact into a source
      POST
    • Bulk upsert contacts for source
      POST
    • Unique values of one field for a filtered contact set
      POST
  • Schema
    • Get contact schema
      GET
    • Get discovery search contact schema
      GET
    • Get discovery search company schema
      GET
    • Get verified discovery contact filter schema
      GET
    • Get verified discovery company filter schema
      GET
    • Get options for field
      GET
    • Verified discovery autocomplete suggestions
      GET
    • Get discovery search options for field
      GET
    • Verified discovery static option lists
      GET
  • Discovery search
    • Find contacts v2
      POST
    • Find companies v2
      POST
    • Find verified contacts
      POST
    • Find verified companies
      POST
  • Jobs
    • Get job status by id
      GET
  • Social publishing
    • Create draft post
    • List posts (drafts, scheduled, published)
    • Schedule or publish posts (bulk)
    • Schedule a LinkedIn comment on an external post
    • Configure cross-account auto-repost
    • Upload media file (multipart)
    • Assemble chunked uploads into one file
    • Import media from a public URL
  • Integrations (social)
    • List social integrations (filter)
      POST
  • Segments
    • Type-ahead search for segments
    • Create segment
    • Get segment by ID
    • Update segment
    • Delete segment
    • Clone segment
  • Sources
    • Bulk upsert sources
    • Bulk fetch sources
    • Bulk update sources
    • Create source
    • Pull contacts from source
    • Get source by ID
    • Update source
  • Credits
    • Get workspace credit balance
Login
  1. Integrations (social)

List social integrations (filter)

POST
/integrations/filter-integrations
Returns connected Twitter and LinkedIn providers for the workspace, with pagination.
Body (optional):
conditions — e.g. [{ "field": "provider", "operator": "==", "value": "twitter" }] or "linkedin", "linkedinPage".
limit, paginationToken — pagination.
Response: data — serialized integrations; each record’s id is the provider id for posts and schedules.

Request

Authorization
API Key
Add parameter in header
x-api-key
Example:
x-api-key: ********************
or
Body Params application/json

Examples

Responses

🟢200
application/json
Paginated integrations list
Bodyapplication/json

🟠401
🔴500
Request Request Example
Shell
JavaScript
Java
Swift
cURL
curl --location 'https://app.highperformr.ai/api/integrations/filter-integrations' \
--header 'x-api-key: <api-key>' \
--header 'Content-Type: application/json' \
--data '{
    "conditions": [
        {
            "field": "provider",
            "operator": "==",
            "value": "twitter"
        }
    ],
    "limit": 10
}'
Response Response Example
200 - Success
{
    "data": [
        {
            "id": "mQQqMeclDHmvr40TbhIU",
            "provider": "twitter"
        }
    ],
    "meta": {}
}
Modified at 2026-04-22 07:54:17
Previous
Import media from a public URL
Next
Type-ahead search for segments
Built with