> ## Documentation Index
> Fetch the complete documentation index at: https://docs.signalark.app/llms.txt
> Use this file to discover all available pages before exploring further.

# Ingest Social Signals

> Batch ingest social engagement events into the Social Lead pipeline.

Use this endpoint to push social engagement data (likes, comments, mentions) into the dedicated Social Engagement pipeline.

High-warmth, ICP-qualified leads from this pipeline are automatically promoted to standard Sales Deals/Accounts.

### Request Body

Provide an array of `ExternalSocialSignal` objects under the `events` key.

**Required Fields per Event:**

* `platform` (string: e.g., `linkedin`, `twitter`, `hackernews`)
* `engagement_type` (string: e.g., `like`, `comment`, `repost`)

**Recommended Fields:**

* `engager_profile_url` - Crucial for contact resolution.
* `company_domain` - Crucial for account matching.
* `warmth_hint` (integer 0-100) - Overrides the baseline warmth score for this engagement type.

**Optional Fields:**

* `engager_name`, `engager_title`, `engager_company`
* `engagement_content`, `post_content`, `post_url`
* `engagement_date`

### Response


## OpenAPI

````yaml POST /v1/social/ingest
openapi: 3.0.0
info:
  title: SignalArk Ingestion API
  version: 1.0.0
  description: >
    API for external partners to ingest market and social signals into the
    SignalArk pipeline.
servers:
  - url: https://www.signalark.app/_api
    description: Production Server
security:
  - ApiKeyAuth: []
paths:
  /v1/social/ingest:
    post:
      tags:
        - Ingestion
      summary: Ingest Social Signals
      description: >-
        Batch ingest social engagement events. High-warmth, ICP-qualified leads
        are automatically promoted to the pipeline.
      operationId: ingestSocialSignals
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
                - events
              properties:
                events:
                  type: array
                  items:
                    type: object
                    required:
                      - platform
                      - engagement_type
                    properties:
                      platform:
                        type: string
                      engagement_type:
                        type: string
                      engager_name:
                        type: string
                      engager_profile_url:
                        type: string
                      engager_company:
                        type: string
                      company_domain:
                        type: string
                      post_url:
                        type: string
                      warmth_hint:
                        type: integer
                        description: Optional base warmth score override (0-100)
      responses:
        '200':
          description: Social ingestion successful
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                  batchId:
                    type: string
                  promotedToPipeline:
                    type: integer
components:
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: Authorization
      description: Use format `Bearer sak_your_api_key_here`

````