Solo.io Metadata API

Internal credential metadata endpoints

Operations 1

GET /metadata Get credential metadata (Internal) #

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/solo-io-metadata-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

solo-io-metadata-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Portal Backend Metadata API
  description: API for the gateway developer portal backend server
  version: 1.0.0
servers:
- url: /v1
  description: API v1 base path
tags:
- name: metadata
  description: Internal credential metadata endpoints
paths:
  /metadata:
    get:
      summary: Get credential metadata (Internal)
      description: 'Internal endpoint used by ExtAuth to validate API keys and access tokens. Returns whether the credential is allowed and any associated metadata.

        '
      operationId: GetCredentialMetadata
      tags:
      - metadata
      parameters:
      - name: apiKey
        in: query
        description: Raw API key value to validate. Exactly one of apiKey or accessToken must be provided.
        schema:
          type: string
      - name: accessToken
        in: query
        description: OAuth access token to validate. Exactly one of apiKey or accessToken must be provided.
        schema:
          type: string
      - name: apiProductId
        in: query
        description: API product ID to check subscription for
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Credential validation result
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CredentialMetadataResponse'
        '400':
          description: Missing required query parameters
components:
  schemas:
    CredentialMetadataResponse:
      type: object
      description: Response from credential metadata validation (internal endpoint used by ExtAuth)
      required:
      - allowed
      properties:
        allowed:
          type: boolean
          description: Whether the credential is valid and allowed
        customMetadata:
          type: object
          description: Custom metadata associated with the credential
          additionalProperties:
            type: string
        rateLimit:
          $ref: '#/components/schemas/RateLimit'
    RateLimit:
      type: object
      description: Rate limit configuration
      required:
      - requestsPerUnit
      - unit
      properties:
        requestsPerUnit:
          type: string
          description: Number of requests allowed per unit
        unit:
          type: string
          description: Time unit for rate limiting
          enum:
          - SECOND
          - MINUTE
          - HOUR
          - DAY
          - MONTH
          - YEAR
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: Bearer token passed in the Authorization header
    identityToken:
      type: apiKey
      in: cookie
      name: id_token
      description: id_token cookie set by the identity provider after OIDC login
    accessToken:
      type: apiKey
      in: cookie
      name: access_token
      description: access_token cookie set by the identity provider after OIDC login