BlueOcean Session Documents API

The session_documents API from BlueOcean — 5 operation(s) for session_documents.

Operations 5

POST /session-documents/upload Upload Session Documents #
GET /session-documents List Session Documents #
GET /session-documents/sessions/{session_token} Get Session Documents #
GET /session-documents/{doc_id}/status Get Session Document Status #
DELETE /session-documents/{doc_id} Delete Uploaded Session Document #

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/blueocean-session-documents-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

blueocean-session-documents-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Fast Session Documents API
  version: 0.1.0
servers:
- url: /api
tags:
- name: session_documents
paths:
  /session-documents/upload:
    post:
      tags:
      - session_documents
      summary: Upload Session Documents
      operationId: upload_session_documents_session_documents_upload_post
      parameters:
      - name: Authorization
        in: header
        required: false
        schema:
          anyOf:
          - type: string
          - type: 'null'
          title: Authorization
      requestBody:
        required: true
        content:
          multipart/form-data:
            schema:
              $ref: '#/components/schemas/Body_upload_session_documents_session_documents_upload_post'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
  /session-documents:
    get:
      tags:
      - session_documents
      summary: List Session Documents
      operationId: list_session_documents_session_documents_get
      parameters:
      - name: session_token
        in: query
        required: true
        schema:
          type: string
          title: Session Token
      - name: user_id
        in: query
        required: true
        schema:
          type: string
          title: User Id
      - name: account_id
        in: query
        required: true
        schema:
          type: string
          title: Account Id
      - name: Authorization
        in: header
        required: false
        schema:
          anyOf:
          - type: string
          - type: 'null'
          title: Authorization
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
  /session-documents/sessions/{session_token}:
    get:
      tags:
      - session_documents
      summary: Get Session Documents
      operationId: get_session_documents_session_documents_sessions__session_token__get
      parameters:
      - name: session_token
        in: path
        required: true
        schema:
          type: string
          title: Session Token
      - name: user_id
        in: query
        required: true
        schema:
          type: string
          title: User Id
      - name: account_id
        in: query
        required: true
        schema:
          type: string
          title: Account Id
      - name: Authorization
        in: header
        required: false
        schema:
          anyOf:
          - type: string
          - type: 'null'
          title: Authorization
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
  /session-documents/{doc_id}/status:
    get:
      tags:
      - session_documents
      summary: Get Session Document Status
      operationId: get_session_document_status_session_documents__doc_id__status_get
      parameters:
      - name: doc_id
        in: path
        required: true
        schema:
          type: string
          title: Doc Id
      - name: user_id
        in: query
        required: true
        schema:
          type: string
          title: User Id
      - name: account_id
        in: query
        required: true
        schema:
          type: string
          title: Account Id
      - name: Authorization
        in: header
        required: false
        schema:
          anyOf:
          - type: string
          - type: 'null'
          title: Authorization
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
  /session-documents/{doc_id}:
    delete:
      tags:
      - session_documents
      summary: Delete Uploaded Session Document
      operationId: delete_uploaded_session_document_session_documents__doc_id__delete
      parameters:
      - name: doc_id
        in: path
        required: true
        schema:
          type: string
          title: Doc Id
      - name: user_id
        in: query
        required: true
        schema:
          type: string
          title: User Id
      - name: account_id
        in: query
        required: true
        schema:
          type: string
          title: Account Id
      - name: Authorization
        in: header
        required: false
        schema:
          anyOf:
          - type: string
          - type: 'null'
          title: Authorization
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    Body_upload_session_documents_session_documents_upload_post:
      properties:
        session_token:
          type: string
          title: Session Token
        user_id:
          type: string
          title: User Id
        account_id:
          type: string
          title: Account Id
        files:
          items:
            type: string
            format: binary
          type: array
          title: Files
      type: object
      required:
      - session_token
      - user_id
      - account_id
      - files
      title: Body_upload_session_documents_session_documents_upload_post
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
            - type: string
            - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
      - loc
      - msg
      - type
      title: ValidationError