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

# Import a LinkedIn connections CSV export for warm-path matching

> Free -- not billed. Parses a LinkedIn connections export (First Name, Last Name, URL, Email Address, Company, Position, Connected On columns) and stores it against your account to power warmPath/networkProximity signals in future search_investors calls. Replaces any previously imported network wholesale, capped at 20,000 rows.



## OpenAPI

````yaml /helium/openapi.json post /v1/fundraising/import-network
openapi: 3.1.0
info:
  title: Helium API
  version: '1.0'
  description: >-
    Helium is a fundraising-research REST API sharing Horizon's prepaid-credit
    account system. Every request authenticates with an `Authorization: Bearer
    <key>` header (the same key that works against Horizon) and, on a billed
    endpoint, debits a fixed number of credits from your shared prepaid balance.
    Check your balance any time with GET /v1/usage (shared with Horizon).
servers:
  - url: https://lite.gravitygtm.com/api
security:
  - bearerAuth: []
paths:
  /v1/fundraising/import-network:
    post:
      tags:
        - fundraising
      summary: Import a LinkedIn connections CSV export for warm-path matching
      description: >-
        Free -- not billed. Parses a LinkedIn connections export (First Name,
        Last Name, URL, Email Address, Company, Position, Connected On columns)
        and stores it against your account to power warmPath/networkProximity
        signals in future search_investors calls. Replaces any previously
        imported network wholesale, capped at 20,000 rows.
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ImportNetworkRequest'
      responses:
        '200':
          description: 200 -- import summary.
          content:
            application/json:
              schema:
                type: object
                properties:
                  rowsImported:
                    type: number
                  request_id:
                    type: string
                required:
                  - rowsImported
                  - request_id
        '400':
          description: 400 invalid_request -- csv_content missing/empty or unparseable.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '401':
          description: >-
            401 unauthorized -- missing or invalid `Authorization: Bearer <key>`
            header.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
components:
  schemas:
    ImportNetworkRequest:
      type: object
      properties:
        csv_content:
          type: string
          minLength: 1
      required:
        - csv_content
    ErrorResponse:
      type: object
      description: >-
        Standard error body. Every response (success or error) carries a
        request_id for support reference.
      properties:
        error:
          type: string
          description: Machine-readable error code.
          enum:
            - unauthorized
            - insufficient_credits
            - not_found
            - rate_limited
            - vendor_error
            - vendor_capacity
        message:
          type: string
          description: Human-readable error detail.
        request_id:
          type: string
          format: uuid
        credits_remaining:
          type: number
          description: >-
            Present whenever a post-reservation/refund balance is known for this
            request.
        refund_issue:
          type: boolean
          description: >-
            Set only when a compensating credit refund itself failed (e.g. a
            transient store error) -- the customer may have been charged without
            the refund landing yet.
      required:
        - error
        - message
        - request_id
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````