Certifaction Documents API

Download your documents or remove {{ .ProductName }}'s access to them

Operations 2

POST /delete-access Remove {{ .ProductName }}'s access to a file #
GET /download Download files #

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/certifaction-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 email required.

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

OpenAPI Specification

certifaction-documents-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: '{{ .ProductName }} Local Documents API'
  description: 'A proxy server for integrating with the {{ .ProductName }} platform.


    ## Setup requirements


    1. Authentication is required to perform some operations. Please refer to the [Authentication](https://developers.certifaction.com/en/references/authentication) section to obtain an API Key or token.

    2. Start the local server on the CLI using the command `{{ .CommandName }} server`


    Refer to [our setup guide](https://developers.certifaction.com/en/guides/getting-started-api) to get started.

    '
  version: ''
servers:
- url: http://localhost:{port}
  variables:
    port:
      default: '8081'
security:
- api_key: []
tags:
- name: Documents
  description: Download your documents or remove {{ .ProductName }}'s access to them
paths:
  /delete-access:
    post:
      operationId: remove_access
      summary: Remove {{ .ProductName }}'s access to a file
      requestBody:
        description: The file that you want to remove {{ .ProductName }}'s access for.
        required: true
        content:
          application/pdf: {}
      responses:
        200:
          description: File access was removed successfully.
        400:
          $ref: '#/components/responses/bad_request'
        401:
          $ref: '#/components/responses/unauthorized'
      tags:
      - Documents
  /download:
    get:
      summary: Download files
      parameters:
      - name: file
        description: A Digital Archive URL
        in: query
        required: true
        schema:
          type: string
          format: url
      - name: password
        description: The signature request password, if Privacy 2.0 was enabled
        in: query
        schema:
          type: string
      operationId: download_file
      responses:
        200:
          description: File download content.
          content:
            application/pdf:
              schema:
                type: string
            application/zip:
              schema:
                type: string
        400:
          $ref: '#/components/responses/bad_request'
        401:
          $ref: '#/components/responses/unauthorized'
      security: []
      tags:
      - Documents
components:
  responses:
    unauthorized:
      description: You are not authorized to carry out the operation. Check that your API key is correct.
    bad_request:
      description: The request is not properly formed. For example, the content could not be read.
  securitySchemes:
    api_key:
      name: Authorization
      in: header
      type: apiKey