Contrast Security Organizations API

An organization represents a grouping of user accounts in Contrast.

Operations 1

GET /organizations/{organizationId} Get organization #

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/contrast-security-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 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

contrast-security-organizations-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Contrast Assess Applications Organizations API
  description: Contrast Assess API for viewing and managing data, including vulnerabilities and libraries, for your organization in Contrast via your API key. See Contrast Documentation ( https://docs.contrastsecurity.com/en/assess.html) for more information.
  version: 4.0.0
  x-logo:
    url: /logo.svg
    href: /
servers:
- url: https://{baseUrl}
  variables:
    baseUrl:
      default: app.contrastsecurity.com
      description: The base URL of your Contrast instance
security:
- Contrast-API-Key: []
  Authorization: []
tags:
- name: Organizations
  description: An organization represents a grouping of user accounts in Contrast.
paths:
  /organizations/{organizationId}:
    get:
      tags:
      - Organizations
      summary: Get organization
      description: Gets an organization by ID
      operationId: getOrganization
      parameters:
      - name: organizationId
        in: path
        required: true
        schema:
          type: string
          format: uuid
        example: 2411f46c-7f57-426e-be61-82d583722c8d
      responses:
        '401':
          $ref: '#/components/responses/Unauthorized401'
        '403':
          $ref: '#/components/responses/Forbidden403'
        '200':
          description: Request successful
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/V4Organization'
components:
  schemas:
    V4Organization:
      type: object
      properties:
        id:
          type: string
          description: Organization ID in Contrast web interface. Located under User menu > User Settings > Profile.
          format: uuid
          example: c3dfe47c-f859-4fcf-ae90-4cbe564c1e23
        name:
          type: string
          description: Organization name.
        timezone:
          type: string
          description: Organization's time zone.
          example: EST
        dateFormat:
          type: string
          description: Organization's date format.
          example: MM/dd/yyyy
        timeFormat:
          type: string
          description: Organization's time format.
          example: hh:mm
        locale:
          type: string
          description: Organization's locale.
          example: en
        createdTime:
          type: string
          description: The time this Organization was first created.
          format: date-time
      description: An organization represents your customer account in the Contrast Platform.
  responses:
    Unauthorized401:
      description: Unauthorized
      content:
        application/json:
          examples:
            Unauthorized:
              description: Unauthorized
              value:
                message: Authorization failure
                details: []
    Forbidden403:
      description: Forbidden
      content:
        application/json:
          examples:
            Forbidden:
              description: Forbidden
              value:
                message: Authorization failure
                details: []
  securitySchemes:
    Contrast-API-Key:
      type: apiKey
      in: header
      name: API-Key
    Authorization:
      type: apiKey
      in: header
      name: Authorization