Signadot Orgs API

The Orgs API from Signadot — 1 operation(s) for orgs.

Operations 1

GET /orgs/ Get Org Name #

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/signadot-orgs-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

signadot-orgs-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  contact: {}
  description: API for Signadot Sandboxes
  title: Signadot Cluster Orgs API
  version: '2.0'
servers:
- url: https://api.signadot.com/api/v2
tags:
- name: Orgs
paths:
  /orgs/:
    get:
      description: Get organization details
      operationId: get-org-name
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/orgs.GetOrgNameResponse'
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '403':
          description: Forbidden
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '500':
          description: Internal Server Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
      security:
      - ApiKeyAuth: []
      summary: Get Org Name
      tags:
      - Orgs
components:
  schemas:
    orgs.Org:
      properties:
        displayName:
          type: string
        name:
          type: string
      type: object
    ErrorResponse:
      properties:
        code:
          type: integer
        error:
          type: string
        requestId:
          type: string
      type: object
    orgs.GetOrgNameResponse:
      properties:
        clusterID:
          description: ID of Authenticated Cluster, if any (via signadot-cluster-token header)
          type: string
        featureFlags:
          additionalProperties:
            type: boolean
          description: Feature Flags as result of authentication
          type: object
        orgs:
          items:
            $ref: '#/components/schemas/orgs.Org'
          type: array
        user:
          allOf:
          - $ref: '#/components/schemas/orgs.User'
          description: Authenticated User, if any
        userFlags:
          allOf:
          - $ref: '#/components/schemas/authtypes.UserFlags'
          description: Flags of authenticated user, if any
      type: object
    orgs.User:
      properties:
        avatar:
          type: string
        createdAt:
          type: string
        email:
          type: string
        firstName:
          type: string
        id:
          type: string
        lastName:
          type: string
        role:
          type: string
        updatedAt:
          type: string
      type: object
    authtypes.UserFlags:
      additionalProperties:
        type: boolean
      type: object
  securitySchemes:
    ApiKeyAuth:
      in: header
      name: signadot-api-key
      type: apiKey