Certifyos Storage API

Cloud storage operations and file access management

Operations 2

GET /storage/download Download file from GCS with custom filename #
GET /storage/presigned-url Generate presigned URL for file download #

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/certifyos-storage-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

certifyos-storage-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  description: API for Certify application
  title: Certify API Layer Storage API
  version: 1.0.0
servers:
- url: http://localhost:9000
  description: Local Development Server
- url: https://api-service.staging.certifyos.com
  description: Staging Server
- url: https://api-service.internal.certifyos.com
  description: Internal Server
- url: https://api-service.test.certifyos.com
  description: Test Server
- url: https://api-service.demo.certifyos.com
  description: Demo Server
- url: https://api-service.certifyos.com
  description: Production Server
tags:
- name: Storage
  description: Cloud storage operations and file access management
paths:
  /storage/download:
    get:
      summary: Download file from GCS with custom filename
      description: Downloads a file from Google Cloud Storage and sets a custom filename for the download
      operationId: downloadFileFromGCS
      tags:
      - Storage
      parameters:
      - description: Optional custom filename for the download
        example: my-document.pdf
        name: fileName
        in: query
        schema:
          type: string
      - description: GCS object path
        example: supporting-documents/doc.pdf
        required: true
        name: filePath
        in: query
        schema:
          type: string
          pattern: \S
      - name: tenant-id
        in: header
        required: true
        description: Tenant ID
        schema:
          type: string
      responses:
        '200':
          description: File downloaded successfully
          content: {}
        '400':
          description: Bad Request - Invalid file path
        '401':
          description: Unauthorized - Authentication required
        '404':
          description: File not found
        '500':
          description: Internal Server Error
      security:
      - jwt: []
  /storage/presigned-url:
    get:
      summary: Generate presigned URL for file download
      description: Creates a time-limited presigned URL (1 hour expiry) for direct file download from GCS
      operationId: generatePresignedUrl
      tags:
      - Storage
      parameters:
      - description: GCS object path
        example: supporting-documents/doc.pdf
        required: true
        name: filePath
        in: query
        schema:
          type: string
          pattern: \S
      - name: tenant-id
        in: header
        required: true
        description: Tenant ID
        schema:
          type: string
      responses:
        '200':
          description: Presigned URL generated successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PresignedUrlResponse'
        '400':
          description: Bad Request - Invalid file path
        '401':
          description: Unauthorized - Authentication required
        '404':
          description: File not found
        '500':
          description: Internal Server Error
      security:
      - jwt: []
components:
  schemas:
    PresignedUrlResponse:
      type: object
      properties:
        presignedUrl:
          type: string
          description: Presigned URL for downloading the file
          examples:
          - https://storage.googleapis.com/bucket/file.pdf?X-Goog-Signature=...
        expiresInHours:
          type: integer
          format: int32
          description: Number of hours until the URL expires
          examples:
          - 1
        expiresAtTimestamp:
          type: integer
          format: int64
          description: Unix timestamp when the URL expires
          examples:
          - 1698412800000
  securitySchemes:
    jwt:
      type: http
      description: JWT Authentication - Provide only the raw token without Bearer prefix
      scheme: bearer
      bearerFormat: JWT