1. Sources
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
  • 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)
  • Segments
    • Type-ahead search for segments
    • Create segment
    • Get segment by ID
    • Update segment
    • Delete segment
    • Clone segment
  • Sources
    • Bulk upsert sources
      POST
    • Bulk fetch sources
      POST
    • Bulk update sources
      PATCH
    • Create source
      POST
    • Pull contacts from source
      POST
    • Get source by ID
      GET
    • Update source
      PATCH
  • Credits
    • Get workspace credit balance
Login
  1. Sources

Pull contacts from source

POST
/sources/pull-contacts-from-source/{id}
Triggers an async audience pull from this LinkedIn social-listening (or other) source into Highperformr.
Contacts appear shortly after the background job finishes. Response is 202 Accepted.
Pass segmentId so the pull is attributed to a segment, and optionally numberOfPastDaysToSync
(defaults to 1 — last 24 hours). Product UI options include 1, 7, 15, 30, 45, 60, 90 days.
Static path prefix pull-contacts-from-source before {id} avoids ambiguous routing with /filter-sources/{sourceType}.

Request

Authorization
API Key
Add parameter in header
x-api-key
Example:
x-api-key: ********************
or
Path Params

Body Params application/jsonRequired

Examples

Responses

🟢202
application/json
Audience pull queued
Bodyapplication/json

🟠401
🟠404
Request Request Example
Shell
JavaScript
Java
Swift
cURL
curl --location 'https://app.highperformr.ai/api/sources/pull-contacts-from-source/' \
--header 'x-api-key: <api-key>' \
--header 'Content-Type: application/json' \
--data '{
    "segmentId": "seg_4n2k8j",
    "numberOfPastDaysToSync": 7
}'
Response Response Example
202 - Success
{
    "message": "We are compiling the contacts for the selected source. They will appear on the page shortly."
}
Modified at 2026-08-06 14:14:15
Previous
Create source
Next
Get source by ID
Built with