Credo AI Other API

Utility endpoints including tenant information and evidence types

Operations 3

GET /evidence_types #
GET /tenant_info #
PATCH /tenant_info #

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/credo-ai-other-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

credo-ai-other-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  description: Credo AI server API
  title: Credo AI server Other API
servers:
- url: /api/v2/credoai
tags:
- name: other
  description: Utility endpoints including tenant information and evidence types
paths:
  /evidence_types:
    get:
      description: Retrieves all available evidence types supported by the system.
      operationId: CredoAIWeb.API.V2.EvidenceTypeController.evidence_types
      responses:
        '200':
          description: OK
          content:
            application/vnd.api+json:
              schema:
                $ref: '#/components/schemas/EvidenceTypeResponse'
        '401':
          description: Unauthorized
          content:
            application/vnd.api+json:
              schema:
                $ref: '#/components/schemas/AuthError'
      security:
      - Bearer: []
      summary: ''
      tags:
      - other
  /tenant_info:
    get:
      description: Retrieves the tenant's information including display name and logo URL
      operationId: CredoAIWeb.API.V2.TenantInfoController.show
      responses:
        '200':
          description: OK
          content:
            application/vnd.api+json:
              schema:
                $ref: '#/components/schemas/TenantInfoResponse'
        '401':
          description: Unauthorized
          content:
            application/vnd.api+json:
              schema:
                $ref: '#/components/schemas/AuthError'
      security:
      - Bearer: []
      summary: ''
      tags:
      - other
    patch:
      description: Updates the tenant's information such as display name and logo URL
      operationId: CredoAIWeb.API.V2.TenantInfoController.update
      responses:
        '200':
          description: OK
          content:
            application/vnd.api+json:
              schema:
                $ref: '#/components/schemas/TenantInfoResponse'
        '401':
          description: Unauthorized
          content:
            application/vnd.api+json:
              schema:
                $ref: '#/components/schemas/AuthError'
        '403':
          description: Forbidden
          content:
            application/vnd.api+json:
              schema:
                $ref: '#/components/schemas/ForbiddenError'
      security:
      - Bearer: []
      summary: ''
      tags:
      - other
      requestBody:
        content:
          application/vnd.api+json:
            schema:
              $ref: '#/components/schemas/TenantInfoUpdateRequest'
        description: data
components:
  schemas:
    AuthError:
      properties:
        errors:
          description: Errors
          items:
            properties:
              code:
                description: an application-specific error code, expressed as a string value.
                type: integer
              detail:
                description: a human-readable explanation specific to this occurrence of the problem. Like title, this field’s value can be localized.
                type: string
              title:
                description: a short, human-readable summary of the problem that SHOULD NOT change from occurrence to occurrence of the problem, except for purposes of localization.
                type: string
            type: object
          type: array
      type: object
    EvidenceTypeResource:
      description: ''
      properties:
        attributes:
          properties:
            document:
              description: document evidence types
              example:
              - text
              - short_text
              - select
              - user
              - file
              - yes_no
              - date
              - number
              type: array
            technical:
              description: technical evidence types
              example:
              - metric
              - statistical_test
              - table
              type: array
          type: object
        id:
          description: The JSON-API resource ID
          example: 64YUaLWSviHgibJaRWr3ZE
          type: string
        relationships:
          properties: {}
          type: object
        type:
          description: The JSON-API resource type
          example: evidence_types
          type: string
      type: object
    EvidenceTypeResponse:
      description: A JSON-API document with a single [EvidenceTypeResource](#evidencetyperesource) resource
      properties:
        data:
          $ref: '#/components/schemas/EvidenceTypeResource'
        included:
          description: Included resources
          items:
            properties:
              id:
                description: The JSON-API resource ID
                type: string
              type:
                description: The JSON-API resource type
                type: string
            type: object
          type: array
      required:
      - data
      type: object
    TenantInfoResource:
      description: ''
      properties:
        attributes:
          properties:
            display_name:
              description: Display Name
              example: Credo AI
              type: string
            help_url:
              description: Help URL
              example: https://help.acme.com/help/me
              type: string
            logo_url:
              description: Logo URL
              example: https://assets.credo.ai/foo.png
              type: string
            scim_token_enabled:
              description: SCIM Token Enabled
              example: true
              type: boolean
            scim_token_last_generated_at:
              description: SCIM Token Last Generated At
              example: '2021-01-01T00:00:00Z'
              type: string
            scim_token_last_used_at:
              description: SCIM Token Last Used At
              example: '2021-01-01T00:00:00Z'
              type: string
            webhook_app_id:
              description: Webhook App ID
              example: ep_2etTEQef3g4gSOb0q1jDRARZ7R2
              type: string
          type: object
        id:
          description: The JSON-API resource ID
          example: 64YUaLWSviHgibJaRWr3ZE
          type: string
        relationships:
          properties: {}
          type: object
        type:
          description: The JSON-API resource type
          example: tenant_infos
          type: string
      type: object
    ForbiddenError:
      properties:
        errors:
          description: Errors
          items:
            properties:
              code:
                description: an application-specific error code, expressed as a string value.
                type: integer
              detail:
                description: a human-readable explanation specific to this occurrence of the problem. Like title, this field’s value can be localized.
                type: string
              title:
                description: a short, human-readable summary of the problem that SHOULD NOT change from occurrence to occurrence of the problem, except for purposes of localization.
                type: string
            type: object
          type: array
      type: object
    TenantInfoUpdateRequest:
      description: ''
      properties:
        data:
          description: ''
          properties:
            attributes:
              properties:
                display_name:
                  description: Display Name
                  example: Credo AI
                  type: string
                help_url:
                  description: Help URL
                  example: https://help.acme.com/help/me
                  type: string
                logo_url:
                  description: Logo URL
                  example: https://assets.credo.ai/foo.png
                  type: string
                scim_token_enabled:
                  description: SCIM Token Enabled
                  example: true
                  type: boolean
              type: object
            type:
              description: The JSON-API resource type
              example: resource-type
              type: string
          type: object
      type: object
    TenantInfoResponse:
      description: A JSON-API document with a single [TenantInfoResource](#tenantinforesource) resource
      properties:
        data:
          $ref: '#/components/schemas/TenantInfoResource'
        included:
          description: Included resources
          items:
            properties:
              id:
                description: The JSON-API resource ID
                type: string
              type:
                description: The JSON-API resource type
                type: string
            type: object
          type: array
      required:
      - data
      type: object
  securitySchemes:
    Bearer:
      in: header
      name: Authorization
      type: apiKey