SpaceX API · API Governance Rules

SpaceX API API Rules

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

8 Rules error 1 warn 4 info 3
View Rules File View on GitHub

Rule Categories

spacex

Rules

warn
spacex-operation-summary-title-case
All operation summaries must use Title Case
$.paths[*][*].summary
warn
spacex-operation-id-camel-case
All operationIds must use camelCase
$.paths[*][*].operationId
warn
spacex-tags-title-case
All tags must use Title Case
$.tags[*].name
info
spacex-resource-has-list-and-get
Resource collections should expose both list and get-by-id operations
$.paths[*]
warn
spacex-response-must-have-description
All responses must have a description
$.paths[*][*].responses[*]
info
spacex-schema-properties-have-descriptions
Schema properties should have descriptions
$.components.schemas[*].properties[*]
error
spacex-servers-must-be-https
All server URLs must use HTTPS
$.servers[*].url
info
spacex-path-parameters-must-be-id
SpaceX API path parameters for entity lookup should be named id
$.paths[*].get.parameters[?(@.in=='path')]

Spectral Ruleset

Raw ↑
rules:
  spacex-operation-summary-title-case:
    description: All operation summaries must use Title Case
    message: Operation summary "{{value}}" must use Title Case
    severity: warn
    given: "$.paths[*][*].summary"
    then:
      function: pattern
      functionOptions:
        match: "^([A-Z][a-z0-9-]*)(\\s[A-Z][a-z0-9-]*)*$"

  spacex-operation-id-camel-case:
    description: All operationIds must use camelCase
    message: OperationId "{{value}}" must use camelCase
    severity: warn
    given: "$.paths[*][*].operationId"
    then:
      function: pattern
      functionOptions:
        match: "^[a-z][a-zA-Z0-9]*$"

  spacex-tags-title-case:
    description: All tags must use Title Case
    message: Tag "{{value}}" must use Title Case
    severity: warn
    given: "$.tags[*].name"
    then:
      function: pattern
      functionOptions:
        match: "^([A-Z][a-z0-9-]*)(\\s[A-Z][a-z0-9-]*)*$"

  spacex-resource-has-list-and-get:
    description: Resource collections should expose both list and get-by-id operations
    message: Path must have corresponding GET operations for collection and single item
    severity: info
    given: "$.paths[*]"
    then:
      field: get
      function: truthy

  spacex-response-must-have-description:
    description: All responses must have a description
    message: Response must have a description
    severity: warn
    given: "$.paths[*][*].responses[*]"
    then:
      field: description
      function: truthy

  spacex-schema-properties-have-descriptions:
    description: Schema properties should have descriptions
    message: Schema property "{{path}}" should have a description
    severity: info
    given: "$.components.schemas[*].properties[*]"
    then:
      field: description
      function: truthy

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

  spacex-path-parameters-must-be-id:
    description: SpaceX API path parameters for entity lookup should be named id
    message: Path parameter for resource lookup should be named id
    severity: info
    given: "$.paths[*].get.parameters[?(@.in=='path')]"
    then:
      field: name
      function: enumeration
      functionOptions:
        values:
          - id

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/spacex-api-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 email required.

A second provider on the same verified email joins the account you already have.