AlphaSense Ingestion API

Push customer-owned content into Enterprise Intelligence.

Operations 2

POST /services/i/ingestion-api/v1/documents Ingest A Customer Document Into Enterprise Intelligence #
GET /services/i/ingestion-api/v1/jobs/{jobId} Get The Status Of An Ingestion Job #

Documentation

Specifications

Schemas & Data

📊
JSONSchema
https://raw.githubusercontent.com/api-evangelist/alphasense/refs/heads/main/json-schema/alphasense-gensearch-conversation-schema.json
📊
JSONSchema
https://raw.githubusercontent.com/api-evangelist/alphasense/refs/heads/main/json-schema/alphasense-citation-schema.json
📊
JSONSchema
https://raw.githubusercontent.com/api-evangelist/alphasense/refs/heads/main/json-schema/alphasense-workflow-agent-schema.json
📊
JSONStructure
https://raw.githubusercontent.com/api-evangelist/alphasense/refs/heads/main/json-structure/alphasense-gensearch-conversation-structure.json
📊
JSONStructure
https://raw.githubusercontent.com/api-evangelist/alphasense/refs/heads/main/json-structure/alphasense-citation-structure.json
📊
JSONStructure
https://raw.githubusercontent.com/api-evangelist/alphasense/refs/heads/main/json-structure/alphasense-workflow-agent-structure.json
📊
JSONSchema
https://raw.githubusercontent.com/api-evangelist/alphasense/refs/heads/main/json-schema/alphasense-document-schema.json
📊
JSONStructure
https://raw.githubusercontent.com/api-evangelist/alphasense/refs/heads/main/json-structure/alphasense-document-structure.json
📊
JSONSchema
https://raw.githubusercontent.com/api-evangelist/alphasense/refs/heads/main/json-schema/alphasense-ingestion-job-schema.json
📊
JSONStructure
https://raw.githubusercontent.com/api-evangelist/alphasense/refs/heads/main/json-structure/alphasense-ingestion-job-structure.json
📊
JSONSchema
https://raw.githubusercontent.com/api-evangelist/alphasense/refs/heads/main/json-schema/alphasense-company-schema.json
📊
JSONStructure
https://raw.githubusercontent.com/api-evangelist/alphasense/refs/heads/main/json-structure/alphasense-company-structure.json
📊
JSONSchema
https://raw.githubusercontent.com/api-evangelist/alphasense/refs/heads/main/json-schema/alphasense-broker-schema.json
📊
JSONStructure
https://raw.githubusercontent.com/api-evangelist/alphasense/refs/heads/main/json-structure/alphasense-broker-structure.json
📊
JSONSchema
https://raw.githubusercontent.com/api-evangelist/alphasense/refs/heads/main/json-schema/alphasense-watchlist-schema.json
📊
JSONStructure
https://raw.githubusercontent.com/api-evangelist/alphasense/refs/heads/main/json-structure/alphasense-watchlist-structure.json

Other Resources

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/alphasense-ingestion-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

alphasense-ingestion-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: AlphaSense Utility Ingestion API
  description: AlphaSense's GraphQL-fronted Utility APIs covering Search, Companies, Brokers, Watchlist, Trends, User, Download / Export, and the REST Ingestion API used by Enterprise Intelligence customers. All GraphQL surfaces share the single /gql endpoint at api.alpha-sense.com and the same OAuth 2.0 + x-api-key authentication as the Agent API; the Ingestion API is REST under /services/i/ingestion-api/v1/. Documented at https://developer.alpha-sense.com/api/getting-started.
  version: '1.0'
  contact:
    name: AlphaSense Developer Support
    url: https://developer.alpha-sense.com/
  termsOfService: https://www.alpha-sense.com/legal/
servers:
- url: https://api.alpha-sense.com
  description: AlphaSense SaaS API gateway
- url: https://{customerDomain}
  description: AlphaSense Private Cloud (customer-hosted)
  variables:
    customerDomain:
      default: customer.alpha-sense.cloud
security:
- bearerAuth: []
  apiKeyHeader: []
tags:
- name: Ingestion
  description: Push customer-owned content into Enterprise Intelligence.
paths:
  /services/i/ingestion-api/v1/documents:
    post:
      operationId: ingestDocument
      summary: Ingest A Customer Document Into Enterprise Intelligence
      description: REST endpoint for pushing customer-owned documents (board decks, CRM exports, meeting transcripts, research notes) into AlphaSense Enterprise Intelligence so they become searchable alongside the external AlphaSense corpus.
      tags:
      - Ingestion
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/IngestionDocumentRequest'
      responses:
        '202':
          description: Document accepted for ingestion.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/IngestionJob'
        '400':
          description: Validation failed.
        '401':
          description: Missing or invalid bearer token / API key.
  /services/i/ingestion-api/v1/jobs/{jobId}:
    get:
      operationId: getIngestionJob
      summary: Get The Status Of An Ingestion Job
      description: Retrieve the processing state and document identifier of an ingestion job previously submitted via POST /services/i/ingestion-api/v1/documents.
      tags:
      - Ingestion
      parameters:
      - name: jobId
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Ingestion job state.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/IngestionJob'
        '404':
          description: Job not found.
components:
  schemas:
    IngestionDocumentRequest:
      type: object
      required:
      - title
      - mimeType
      - content
      properties:
        title:
          type: string
        mimeType:
          type: string
          description: MIME type of the uploaded document.
        content:
          type: string
          description: Base64-encoded document content or a presigned upload reference.
        tags:
          type: array
          items:
            type: string
        sourceType:
          type: string
          enum:
          - internal
    IngestionJob:
      type: object
      properties:
        id:
          type: string
        status:
          type: string
          enum:
          - accepted
          - processing
          - ready
          - failed
        documentId:
          type: string
          description: AlphaSense document id once ingestion completes.
        message:
          type: string
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
    apiKeyHeader:
      type: apiKey
      in: header
      name: x-api-key
externalDocs:
  description: AlphaSense API Getting Started
  url: https://developer.alpha-sense.com/api/getting-started