Linkup Research API

The Research API from Linkup — 2 operation(s) for research.

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/linkup-so-research-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 email required.

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

OpenAPI Specification

linkup-so-research-api-openapi.yml Raw ↑
openapi: 3.0.1
info:
  title: Linkup Credits Research API
  description: Production-grade web search and answer API for AI agents and LLMs. The /search endpoint grounds model responses in real-time web context, returning ranked results, sourced answers with inline citations, or schema-driven structured output. /fetch converts a URL into clean LLM-ready markdown, /research starts an asynchronous deep-research task, and /credits/balance reports remaining account credits. All endpoints authenticate with a Bearer API key.
  termsOfService: https://www.linkup.so/terms-of-service
  contact:
    name: Linkup
    url: https://www.linkup.so
  version: '1.0'
servers:
- url: https://api.linkup.so/v1
security:
- bearerAuth: []
tags:
- name: Research
paths:
  /research:
    post:
      operationId: createResearch
      tags:
      - Research
      summary: Start an asynchronous deep-research task (beta).
      description: Starts an autonomous web investigation. Returns immediately with a task id and a non-terminal status; poll GET /research/{id} until the task reaches a terminal state to retrieve the synthesized, cited result.
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ResearchRequest'
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ResearchTask'
        '401':
          description: Unauthorized
        '402':
          description: Payment Required (insufficient credits)
        '429':
          description: Too Many Requests
  /research/{id}:
    get:
      operationId: getResearch
      tags:
      - Research
      summary: Retrieve the state and result of a research task.
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
        description: Identifier of the research task.
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ResearchTask'
        '401':
          description: Unauthorized
        '404':
          description: Not Found
        '429':
          description: Too Many Requests
components:
  schemas:
    ResearchTask:
      type: object
      properties:
        id:
          type: string
          description: Identifier of the research task.
        status:
          type: string
          enum:
          - pending
          - processing
          - completed
          - failed
          description: Current state of the task.
        output:
          type: object
          description: The synthesized, cited result when status is `completed`.
        error:
          type: string
          description: Failure reason when status is `failed`.
    ResearchRequest:
      type: object
      required:
      - query
      properties:
        query:
          type: string
          description: Natural-language research question.
        mode:
          type: string
          enum:
          - answer
          - investigate
          - research
          description: Type of investigation. Omit to let Linkup classify the question.
        reasoningDepth:
          type: string
          enum:
          - S
          - M
          - L
          - XL
          default: L
          description: How much reasoning effort the task spends.
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: 'Pass your Linkup API key as `Authorization: Bearer <API_KEY>`.'