401GO Documents API

The Documents API from 401GO — 2 operation(s) for documents.

Operations 2

GET /participants/{participant_id}/participant-documents/ #
GET /participants/{participant_id}/participant-documents/{document_name}/ #

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/401go-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

401go-documents-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: 401go Documents API
  version: 1.0.0
  description: 'Operations tagged Documents across 2 of this provider''s published API definitions: 401go-documents-api-openapi.yml, 401go-openapi-original.json. Each path carries the servers of the definition it was published in.'
servers:
- url: https://app.401go.com/api
  description: Base URL reconciled from apis.yml
tags:
- name: Documents
paths:
  /participants/{participant_id}/participant-documents/:
    servers:
    - url: https://app.401go.com/api
      description: Base URL reconciled from apis.yml
    get:
      operationId: list_participant_documents
      description: Returns a list of participant related documents.
      parameters:
      - in: path
        name: participant_id
        schema:
          type: string
        required: true
      tags:
      - Documents
      security:
      - oauth2: []
      - knoxApiToken: []
      responses:
        '200':
          content:
            application/json:
              schema:
                type: object
                description: Serializer for listing available documents for a participant.
                properties:
                  available_documents:
                    type: array
                    items:
                      enum:
                      - plan_document
                      - plan_highlights
                      - fee_disclosures
                      - qdia
                      - safe_harbor_notice
                      - auto_enroll_notice
                      type: string
                      description: '* `plan_document` - plan_document

                        * `plan_highlights` - plan_highlights

                        * `fee_disclosures` - fee_disclosures

                        * `qdia` - qdia

                        * `safe_harbor_notice` - safe_harbor_notice

                        * `auto_enroll_notice` - auto_enroll_notice'
                      x-spec-enum-id: 9778ac1b6a16c5cc
                required:
                - available_documents
          description: ''
        '401':
          description: 'Unauthorized: Missing or invalid authentication'
        '403':
          description: 'Forbidden: Insufficient permissions or scopes'
  /participants/{participant_id}/participant-documents/{document_name}/:
    servers:
    - url: https://app.401go.com/api
      description: Base URL reconciled from apis.yml
    get:
      operationId: get_signed_participant_document_url
      description: Returns a signed url for the given named document that will last for 30 minutes.
      parameters:
      - in: path
        name: document_name
        schema:
          type: string
        required: true
      - in: path
        name: participant_id
        schema:
          type: string
        required: true
      tags:
      - Documents
      security:
      - oauth2: []
      - knoxApiToken: []
      responses:
        '200':
          content:
            application/json:
              schema:
                type: object
                description: Serializer for document signed URLs.
                properties:
                  signed_url:
                    type: string
                    format: uri
                required:
                - signed_url
          description: ''
        '400':
          description: 'Bad Request: Invalid document name or document not available for this participant'
        '401':
          description: 'Unauthorized: Missing or invalid authentication'
        '403':
          description: 'Forbidden: Insufficient permissions or scopes'
components:
  securitySchemes:
    knoxApiToken:
      type: apiKey
      in: header
      name: Authorization
      description: Token-based authentication with required prefix "Token"
    oauth2:
      type: http
      scheme: bearer
      description: OAuth 2.0 Bearer based with an existing token. Enter a token retrieved via the regular OAuth flow elsewhere.
x-refined-from:
- 401go-documents-api-openapi.yml
- 401go-openapi-original.json