Traceloop organizations API

The organizations API from Traceloop — 1 operation(s) for organizations.

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/traceloop-organizations-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

traceloop-organizations-api-openapi.yml Raw ↑
openapi: 3.0.0
info:
  title: Traceloop auto-monitor-setups organizations API
  version: 1.0.0
  contact: {}
servers:
- url: https://api.traceloop.com
tags:
- name: organizations
paths:
  /v2/organizations:
    post:
      description: Create a new organization with environments and API keys.
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/request.CreateOrganizationRequest'
        description: Organization creation request
        required: true
      responses:
        '201':
          description: Created
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/response.CreateOrganizationResponse'
        '400':
          description: Invalid request body or validation error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/response.ErrorResponse'
        '403':
          description: Not allowed to create organizations
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/response.ErrorResponse'
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/response.ErrorResponse'
      summary: Create a new organization
      tags:
      - organizations
components:
  schemas:
    response.EnvironmentWithKeyResponse:
      properties:
        api_key:
          type: string
        slug:
          type: string
      type: object
    response.CreateOrganizationResponse:
      properties:
        environments:
          items:
            $ref: '#/components/schemas/response.EnvironmentWithKeyResponse'
          type: array
        org_id:
          type: string
      type: object
    response.ErrorResponse:
      description: Standard error response structure
      properties:
        error:
          example: error message
          type: string
      type: object
    request.CreateOrganizationRequest:
      properties:
        envs:
          items:
            type: string
          type: array
        org_name:
          type: string
        retention_hours:
          type: integer
          description: Data retention period in hours (1-720). Defaults to 720 (1 month).
          minimum: 1
          maximum: 720
          default: 720
      required:
      - org_name
      type: object
  securitySchemes:
    BearerAuth:
      description: Type "Bearer" followed by a space and JWT token.
      in: header
      name: Authorization
      type: apiKey