Comet Redirect API

Redirects for SDK generated links

Operations 4

GET /v1/session/redirect/datasets Create dataset redirect url #
GET /v1/session/redirect/experiments Create experiment redirect url #
GET /v1/session/redirect/optimizations Create optimization redirect url #
GET /v1/session/redirect/projects Create project redirect url #

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/comet-redirect-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

comet-redirect-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Opik REST Redirect API
  description: The Opik REST API is currently in beta and subject to change.
  contact:
    name: Github Repository
    url: https://github.com/comet-ml/opik
  license:
    name: Apache 2.0
    url: http://www.apache.org/licenses/LICENSE-2.0.html
  version: 1.0.0
servers:
- url: http://localhost:5173/api
  description: Local server
- url: https://www.comet.com/opik/api
  description: Opik Cloud
tags:
- name: Redirect
  description: Redirects for SDK generated links
paths:
  /v1/session/redirect/datasets:
    get:
      tags:
      - Redirect
      summary: Create dataset redirect url
      operationId: datasetsRedirect
      parameters:
      - name: dataset_id
        in: query
        required: true
        schema:
          type: string
          format: uuid
      - name: workspace_name
        in: query
        schema:
          type: string
      - name: path
        in: query
        required: true
        schema:
          type: string
      responses:
        '303':
          description: Redirect
        '400':
          description: Bad Request
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/ErrorMessage'
        '404':
          description: Not Found
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/ErrorMessage'
  /v1/session/redirect/experiments:
    get:
      tags:
      - Redirect
      summary: Create experiment redirect url
      operationId: experimentsRedirect
      parameters:
      - name: dataset_id
        in: query
        required: true
        schema:
          type: string
          format: uuid
      - name: experiment_id
        in: query
        required: true
        schema:
          type: string
          format: uuid
      - name: workspace_name
        in: query
        schema:
          type: string
      - name: path
        in: query
        required: true
        schema:
          type: string
      responses:
        '303':
          description: Redirect
        '400':
          description: Bad Request
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/ErrorMessage'
        '404':
          description: Not Found
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/ErrorMessage'
  /v1/session/redirect/optimizations:
    get:
      tags:
      - Redirect
      summary: Create optimization redirect url
      operationId: optimizationsRedirect
      parameters:
      - name: dataset_id
        in: query
        required: true
        schema:
          type: string
          format: uuid
      - name: optimization_id
        in: query
        required: true
        schema:
          type: string
          format: uuid
      - name: workspace_name
        in: query
        schema:
          type: string
      - name: path
        in: query
        required: true
        schema:
          type: string
      responses:
        '303':
          description: Redirect
        '400':
          description: Bad Request
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/ErrorMessage'
        '404':
          description: Not Found
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/ErrorMessage'
  /v1/session/redirect/projects:
    get:
      tags:
      - Redirect
      summary: Create project redirect url
      operationId: projectsRedirect
      parameters:
      - name: trace_id
        in: query
        required: true
        schema:
          type: string
          format: uuid
      - name: workspace_name
        in: query
        schema:
          type: string
      - name: path
        in: query
        required: true
        schema:
          type: string
      responses:
        '303':
          description: Redirect
        '400':
          description: Bad Request
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/ErrorMessage'
        '404':
          description: Not Found
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/ErrorMessage'
components:
  schemas:
    ErrorMessage:
      type: object
      properties:
        code:
          type: integer
          format: int32
        message:
          type: string
        details:
          type: string