Livepeer · API Governance Rules

Livepeer API Rules

Spectral linting rules defining API design standards and conventions for Livepeer.

11 Rules error 2 warn 6 info 3
View Rules File View on GitHub

Rule Categories

livepeer

Rules

error
livepeer-operation-id-required
Every Livepeer Studio operation must declare an operationId
$.paths.*[get,post,put,patch,delete]
warn
livepeer-operation-id-camel-case
Livepeer operationIds must use camelCase (createStream, getMultistreamTargets)
$.paths.*[get,post,put,patch,delete]
warn
livepeer-summary-required
Every operation must have a summary
$.paths.*[get,post,put,patch,delete]
info
livepeer-summary-title-case
Summaries should use sentence/title casing with capitalized first word
$.paths.*[get,post,put,patch,delete]
warn
livepeer-tags-required
Every operation must declare at least one tag
$.paths.*[get,post,put,patch,delete]
warn
livepeer-tag-lowercase
Livepeer tags are lowercase (stream, asset, webhook, room, accessControl, generate)
$.paths.*[get,post,put,patch,delete].tags.*
info
livepeer-bearer-auth
Livepeer Studio requires bearer token (apiKey) security
$.components.securitySchemes.apiKey
info
livepeer-path-kebab-case
Paths must use kebab-case (e.g. /access-control/signing-key, /multistream/target, /start-pull)
$.paths
warn
livepeer-no-trailing-slash
Paths should not have trailing slashes
$.paths
warn
livepeer-2xx-response-defined
Every operation must define at least one 2xx response
$.paths.*[get,post,put,patch,delete].responses
error
livepeer-server-https
Server URLs must use HTTPS
$.servers[*].url

Spectral Ruleset

Raw ↑
extends:
  - spectral:oas

rules:
  # Livepeer Studio API conventions:
  # - All paths use kebab-case singular resources (/stream, /asset, /webhook, /room, /multistream/target)
  # - Bearer token auth via Authorization header (apiKey scheme)
  # - operationIds use camelCase (e.g. createStream, getMultistreamTargets, addMultistreamTarget)
  # - Path parameters use camelCase: {id}, {assetId}, {taskId}, {playbackId}, {targetId}, {userId}, {keyId}, {logId}, {parentId}
  # - AI generate endpoints live under /api/generate/* (text-to-image, image-to-video, etc.)
  # - Tags are lowercase singular (stream, asset, webhook, room, multistream, session, transcode, accessControl, playback, generate, metrics, task)
  # - All operations have operationId + summary + description
  # - 4xx/5xx errors return error-information schema

  livepeer-operation-id-required:
    description: Every Livepeer Studio operation must declare an operationId
    message: "Operation must declare an operationId"
    severity: error
    given: "$.paths.*[get,post,put,patch,delete]"
    then:
      field: operationId
      function: truthy

  livepeer-operation-id-camel-case:
    description: Livepeer operationIds must use camelCase (createStream, getMultistreamTargets)
    message: "OperationId '{{value}}' must use camelCase"
    severity: warn
    given: "$.paths.*[get,post,put,patch,delete]"
    then:
      field: operationId
      function: pattern
      functionOptions:
        match: "^[a-z][a-zA-Z0-9]+$"

  livepeer-summary-required:
    description: Every operation must have a summary
    message: "Operation must declare a summary"
    severity: warn
    given: "$.paths.*[get,post,put,patch,delete]"
    then:
      field: summary
      function: truthy

  livepeer-summary-title-case:
    description: Summaries should use sentence/title casing with capitalized first word
    message: "Summary '{{value}}' must start with a capital letter"
    severity: info
    given: "$.paths.*[get,post,put,patch,delete]"
    then:
      field: summary
      function: pattern
      functionOptions:
        match: "^[A-Z]"

  livepeer-tags-required:
    description: Every operation must declare at least one tag
    message: "Operation must declare tags"
    severity: warn
    given: "$.paths.*[get,post,put,patch,delete]"
    then:
      field: tags
      function: truthy

  livepeer-tag-lowercase:
    description: Livepeer tags are lowercase (stream, asset, webhook, room, accessControl, generate)
    message: "Tag '{{value}}' must start with a lowercase letter"
    severity: warn
    given: "$.paths.*[get,post,put,patch,delete].tags.*"
    then:
      function: pattern
      functionOptions:
        match: "^[a-z]"

  livepeer-bearer-auth:
    description: Livepeer Studio requires bearer token (apiKey) security
    message: "Studio operations should require apiKey bearer auth"
    severity: info
    given: "$.components.securitySchemes.apiKey"
    then:
      field: scheme
      function: pattern
      functionOptions:
        match: "^bearer$"

  livepeer-path-kebab-case:
    description: Paths must use kebab-case (e.g. /access-control/signing-key, /multistream/target, /start-pull)
    message: "Path '{{property}}' should use kebab-case for static segments"
    severity: info
    given: "$.paths"
    then:
      field: "@key"
      function: pattern
      functionOptions:
        match: "^(/[a-z0-9-]+|/\\{[a-zA-Z0-9]+\\})+/?$"

  livepeer-no-trailing-slash:
    description: Paths should not have trailing slashes
    message: "Path '{{property}}' must not end with a trailing slash"
    severity: warn
    given: "$.paths"
    then:
      field: "@key"
      function: pattern
      functionOptions:
        notMatch: "/$"

  livepeer-2xx-response-defined:
    description: Every operation must define at least one 2xx response
    message: "Operation must define a 2xx response"
    severity: warn
    given: "$.paths.*[get,post,put,patch,delete].responses"
    then:
      function: schema
      functionOptions:
        schema:
          type: object
          patternProperties:
            "^2[0-9][0-9]$": {}
          minProperties: 1

  livepeer-server-https:
    description: Server URLs must use HTTPS
    message: "Server URL '{{value}}' must use HTTPS"
    severity: error
    given: "$.servers[*].url"
    then:
      function: pattern
      functionOptions:
        match: "^https://"

Work with this as data

Every ruleset 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 spectral rules

4 MCP tools reach this
  • find_rulesBrowse and filter every ruleset in the catalog.
  • 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 ruleset
curl "https://apis.io/api/v1/rules/livepeer-studio-rules"
All spectral rules
curl "https://apis.io/api/v1/rules?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.