Cortex website screenshot

Cortex

Cortex is an Internal Developer Portal and service catalog used by platform and engineering teams to inventory services, libraries, domains, teams, on-call rotations, and resources; measure them against Scorecards (production readiness, security, SLO compliance, cost, AI usage); and drive developer-facing experiences through Initiatives, Workflows, and Scaffolder templates. Cortex pulls signals from GitHub, GitLab, AWS, Azure, GCP, Datadog, PagerDuty, Slack, Jira, Snyk, SonarQube, and many other integrations, and exposes a REST API and an MCP server so that humans and AI agents can query the catalog, scorecards, dependencies, and entity descriptors.

6 APIs 0 Features
Internal Developer PortalService CatalogScorecardsPlatform EngineeringDeveloper ExperienceSRE

APIs

Cortex Catalog API

REST endpoints to list and retrieve catalog entities (services, libraries, domains, resources, teams) and their descriptors. Supports filtering by tag, type, group, and ownershi...

Cortex Scorecards API

REST endpoints to list Scorecards, fetch scores for a Scorecard across entities, and surface recommended next steps for improving an entity's score. Underpins production-readine...

Cortex Dependencies API

REST endpoints to list and inspect entity-to-entity dependencies (caller and callee) and the relationships used to build the service graph.

Cortex Initiatives API

REST endpoints to list and retrieve Initiatives - time-boxed cross-team programs that track Scorecard progress, owners, and deadlines.

Cortex Workflow Runs API

REST endpoints for managing and querying Workflow runs, used to drive developer self-service actions and scaffolding from the Cortex IDP.

Cortex MCP Server

Model Context Protocol server exposing Cortex catalog, scorecards, dependencies, and on-call data to AI agents and copilots through MCP tools and resources.

Collections

Cortex API

OPEN

Pricing Plans

Cortex App Plans Pricing

1 plans

PLANS

Rate Limits

Cortex App Rate Limits

2 limits

RATE LIMITS

FinOps

Resources

🔗
LinkedIn
LinkedIn
🔗
Website
Website
🔗
Documentation
Documentation
👥
GitHub
GitHub
🔗
Plans
Plans
🔗
RateLimits
RateLimits
🔗
FinOps
FinOps
🔗
LlmsText
LlmsText

Sources

apis.yml Raw ↑
opencollection: 1.0.0
info:
  name: Cortex API
  version: v1
request:
  auth:
    type: bearer
    token: '{{bearerToken}}'
items:
- info:
    name: Catalog
    type: folder
  items:
  - info:
      name: List all catalog entities
      type: http
    http:
      method: GET
      url: https://api.getcortexapp.com/api/v1/catalog
    docs: List all catalog entities
  - info:
      name: Retrieve specific entity details
      type: http
    http:
      method: GET
      url: https://api.getcortexapp.com/api/v1/catalog/:tagOrId
      params:
      - name: tagOrId
        value: ''
        type: path
        description: The entity tag or unique identifier.
    docs: Retrieve specific entity details
  - info:
      name: List entity descriptors (YAML definitions)
      type: http
    http:
      method: GET
      url: https://api.getcortexapp.com/api/v1/catalog/descriptors
    docs: List entity descriptors (YAML definitions)
  - info:
      name: View entity dependencies
      type: http
    http:
      method: GET
      url: https://api.getcortexapp.com/api/v1/catalog/:tagOrId/dependencies
      params:
      - name: tagOrId
        value: ''
        type: path
        description: The entity tag or unique identifier.
    docs: View entity dependencies
- info:
    name: Scorecards
    type: folder
  items:
  - info:
      name: List all scorecards
      type: http
    http:
      method: GET
      url: https://api.getcortexapp.com/api/v1/scorecards
    docs: List all scorecards
  - info:
      name: Get scorecard details
      type: http
    http:
      method: GET
      url: https://api.getcortexapp.com/api/v1/scorecards/:tag
      params:
      - name: tag
        value: ''
        type: path
        description: The scorecard tag.
    docs: Get scorecard details
- info:
    name: Initiatives
    type: folder
  items:
  - info:
      name: List initiatives
      type: http
    http:
      method: GET
      url: https://api.getcortexapp.com/api/v1/initiatives
    docs: List initiatives
bundled: true