Cohesity Artifacts API

The Artifacts API from Cohesity — 1 operation(s) for artifacts.

Operations 1

GET /public/artifacts/{taskId}/{format} Fetch report artifact for task #

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/cohesity-artifacts-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

cohesity-artifacts-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  description: Public APIs exposed by Helios Reporting service.
  version: v1
  title: Helios Reporting service Artifacts API
  termsOfService: https://cohesity.com
  contact:
    email: support@cohesity.com
servers:
- url: https://helios.cohesity.com/heliosreporting/api/v1
security:
- ApiKeyAuth: []
tags:
- name: Artifacts
paths:
  /public/artifacts/{taskId}/{format}:
    get:
      description: Get the report artifact associated with task.
      tags:
      - Artifacts
      summary: Fetch report artifact for task
      operationId: GetArtifactForTask
      parameters:
      - name: taskId
        in: path
        description: Specifies the task for which report must be fetched.
        required: true
        schema:
          type: string
      - name: format
        in: path
        description: Specifies the format in which the report is requested.
        required: true
        schema:
          type: string
          enum:
          - PDF
          - XLS
          - CSV
          - RawData
      responses:
        200:
          $ref: '#/components/responses/GetArtifactForTaskResponse'
        default:
          $ref: '#/components/responses/ErrorResponse'
components:
  responses:
    ErrorResponse:
      description: Error
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
    GetArtifactForTaskResponse:
      description: The file pased on the artifact type.
      content:
        application/json:
          schema:
            type: string
            format: binary
  schemas:
    Error:
      description: Specifies the error object with error code and a message.
      type: object
      properties:
        errorCode:
          description: Specifies the error code.
          type: integer
        errorMessage:
          description: Specifies the error message.
          type: string
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: apiKey