LangChain fleet integrations API

The fleet integrations API from LangChain — 3 operation(s) for fleet integrations.

Operations 6

GET /v1/fleet/integrations List integrations
POST /v1/fleet/integrations Create a custom integration
GET /v1/fleet/integrations/{id} Get an integration
DELETE /v1/fleet/integrations/{id} Delete a custom integration
PATCH /v1/fleet/integrations/{id} Update a custom integration
PUT /v1/fleet/integrations/{id}/auth-methods Replace integration auth methods

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/langchain-fleet-integrations-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

langchain-fleet-integrations-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: LangSmith access_policies fleet integrations API
  description: 'The LangSmith API is used to programmatically create and manage LangSmith resources.


    ## Host

    https://api.smith.langchain.com


    ## Authentication

    To authenticate with the LangSmith API, set the `X-Api-Key` header

    to a valid [LangSmith API key](https://docs.langchain.com/langsmith/create-account-api-key#create-an-api-key).


    '
  version: 0.1.0
servers:
- url: /
tags:
- name: fleet integrations
paths:
  /v1/fleet/integrations:
    get:
      security:
      - API Key: []
      - Tenant ID: []
      - Bearer Auth: []
      description: Returns integrations available to the workspace.
      tags:
      - fleet integrations
      summary: List integrations
      parameters:
      - description: Filter by source (e.g. langchain, custom)
        name: source
        in: query
        schema:
          type: string
          title: Source
      - description: Items per page (default 20, max 100)
        name: page_size
        in: query
        schema:
          type: integer
          title: Page Size
      - description: Opaque pagination cursor
        name: cursor
        in: query
        schema:
          type: string
          title: Cursor
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/integrations.ListResponse'
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/integrations.ErrorResponse'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/integrations.ErrorResponse'
        '403':
          description: Forbidden
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/integrations.ErrorResponse'
    post:
      security:
      - API Key: []
      - Tenant ID: []
      - Bearer Auth: []
      description: Registers a new custom integration. Type is forced to CUSTOM.
      tags:
      - fleet integrations
      summary: Create a custom integration
      parameters: []
      responses:
        '201':
          description: Created
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/integrations.Integration'
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/integrations.ErrorResponse'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/integrations.ErrorResponse'
        '403':
          description: Forbidden
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/integrations.ErrorResponse'
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/integrations.CreateRequest'
  /v1/fleet/integrations/{id}:
    get:
      security:
      - API Key: []
      - Tenant ID: []
      - Bearer Auth: []
      tags:
      - fleet integrations
      summary: Get an integration
      parameters:
      - description: Integration id
        name: id
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/integrations.Integration'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/integrations.ErrorResponse'
        '403':
          description: Forbidden
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/integrations.ErrorResponse'
        '404':
          description: Not Found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/integrations.ErrorResponse'
    delete:
      security:
      - API Key: []
      - Tenant ID: []
      - Bearer Auth: []
      description: Idempotent. Returns 204 whether or not the integration existed.
      tags:
      - fleet integrations
      summary: Delete a custom integration
      parameters:
      - description: Integration id
        name: id
        in: path
        required: true
        schema:
          type: string
      responses:
        '204':
          description: No Content
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/integrations.ErrorResponse'
        '403':
          description: Forbidden
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/integrations.ErrorResponse'
    patch:
      security:
      - API Key: []
      - Tenant ID: []
      - Bearer Auth: []
      description: Updates mutable fields. URL is immutable.
      tags:
      - fleet integrations
      summary: Update a custom integration
      parameters:
      - description: Integration id
        name: id
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/integrations.Integration'
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/integrations.ErrorResponse'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/integrations.ErrorResponse'
        '403':
          description: Forbidden
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/integrations.ErrorResponse'
        '404':
          description: Not Found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/integrations.ErrorResponse'
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/integrations.UpdateRequest'
  /v1/fleet/integrations/{id}/auth-methods:
    put:
      security:
      - API Key: []
      - Tenant ID: []
      - Bearer Auth: []
      description: Replaces the integration's full list of supported auth methods.
      tags:
      - fleet integrations
      summary: Replace integration auth methods
      parameters:
      - description: Integration id
        name: id
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/integrations.Integration'
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/integrations.ErrorResponse'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/integrations.ErrorResponse'
        '403':
          description: Forbidden
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/integrations.ErrorResponse'
        '404':
          description: Not Found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/integrations.ErrorResponse'
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/integrations.ReplaceAuthMethodsRequest'
components:
  schemas:
    integrations.ListResponse:
      type: object
      properties:
        items:
          type: array
          items:
            $ref: '#/components/schemas/integrations.Integration'
        next_cursor:
          type: string
    integrations.Transport:
      type: string
      enum:
      - mcp_http
      x-enum-varnames:
      - TransportMCPHTTP
    integrations.UpdateRequest:
      type: object
      properties:
        category:
          type: string
        description:
          type: string
        enabled:
          type: boolean
        icon_url:
          type: string
        name:
          type: string
    integrations.Integration:
      type: object
      properties:
        auth_methods:
          type: array
          items:
            $ref: '#/components/schemas/integrations.AuthMethod'
        category:
          type: string
        created_at:
          type: string
        description:
          type: string
        enabled:
          type: boolean
        icon_url:
          type: string
        id:
          type: string
        name:
          type: string
        source:
          type: string
        transport:
          $ref: '#/components/schemas/integrations.Transport'
        updated_at:
          type: string
        url:
          type: string
    integrations.AuthMethod:
      type: object
      properties:
        provider_match:
          $ref: '#/components/schemas/integrations.ProviderMatch'
        type:
          $ref: '#/components/schemas/integrations.AuthType'
    integrations.ReplaceAuthMethodsRequest:
      type: object
      properties:
        auth_methods:
          type: array
          items:
            $ref: '#/components/schemas/integrations.AuthMethod'
    integrations.ProviderMatch:
      type: object
      properties:
        by:
          $ref: '#/components/schemas/integrations.MatchBy'
        value:
          type: string
    integrations.ErrorResponse:
      type: object
      properties:
        code:
          type: string
        detail:
          type: string
        status:
          type: integer
        type:
          type: string
    integrations.AuthType:
      type: string
      enum:
      - oauth2
      - headers
      - api_key
      - none
      x-enum-varnames:
      - AuthTypeOAuth2
      - AuthTypeHeaders
      - AuthTypeAPIKey
      - AuthTypeNone
    integrations.CreateRequest:
      type: object
      required:
      - name
      - url
      properties:
        category:
          type: string
        description:
          type: string
        icon_url:
          type: string
        name:
          type: string
        source:
          type: string
        url:
          type: string
    integrations.MatchBy:
      type: string
      enum:
      - kind
      - id
      x-enum-varnames:
      - MatchByKind
      - MatchByID
  securitySchemes:
    API_Key:
      type: apiKey
      in: header
      name: X-API-Key
    Tenant_ID:
      type: apiKey
      in: header
      name: X-Tenant-Id
    Bearer_Auth:
      type: http
      description: Bearer tokens are used to authenticate from the UI. Must also specify x-tenant-id or x-organization-id (for org scoped apis).
      scheme: bearer
    Organization_ID:
      type: apiKey
      in: header
      name: X-Organization-Id