Backstage Search API

The Search API from Backstage — 1 operation(s) for search.

Operations 1

GET /query #

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/backstage-search-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

backstage-search-backend-openapi.yaml Raw ↑
openapi: 3.1.0
info:
  title: search
  version: '1'
  description: The Backstage backend plugin that provides search functionality.
  license:
    name: Apache-2.0
    url: http://www.apache.org/licenses/LICENSE-2.0.html
  contact: {}
servers:
  - url: /
components:
  examples: {}
  headers: {}
  parameters: {}
  requestBodies: {}
  responses:
    ErrorResponse:
      description: An error response from the backend.
      content:
        application/json; charset=utf-8:
          schema:
            $ref: '#/components/schemas/Error'
  schemas:
    Error:
      type: object
      properties:
        error:
          type: object
          properties:
            name:
              type: string
            message:
              type: string
          required:
            - name
            - message
        request:
          type: object
          properties:
            method:
              type: string
            url:
              type: string
          required:
            - method
            - url
        response:
          type: object
          properties:
            statusCode:
              type: number
          required:
            - statusCode
      required:
        - error
        - request
        - response

    JsonObject:
      type: object
      properties: {}
      # Free form object.
      additionalProperties: {}
  securitySchemes:
    JWT:
      type: http
      scheme: bearer
      bearerFormat: JWT
paths:
  /query:
    get:
      operationId: Query
      description: Query documents with a given filter.
      tags:
        - Search
      responses:
        '200':
          description: Ok
          content:
            application/json:
              schema:
                type: object
                properties:
                  results:
                    type: array
                    items:
                      type: object
                      properties:
                        type:
                          type: string
                          description: The "type" of the given document.
                        document:
                          type: object
                          description: The raw value of the document, as indexed.
                          properties:
                            title:
                              type: string
                              description: The primary name of the document (e.g. name, title, identifier, etc).
                            text:
                              type: string
                              description: Free-form text of the document (e.g. description, content, etc).
                            location:
                              type: string
                              description: The relative or absolute URL of the document (target when a search result is clicked).
                        highlight:
                          type: object
                          description: |-
                            Optional result highlight. Useful for improving the search result
                            display/experience.
                        rank:
                          type: integer
                          description: |-
                            Optional result rank, where 1 is the first/top result returned. 
                            Useful for understanding search effectiveness in analytics.
                      required:
                        - type
                        - document
                      additionalProperties: false
                  nextPageCursor:
                    type: string
                  previousPageCursor:
                    type: string
                  numberOfResults:
                    type: integer
                required:
                  - results
        default:
          $ref: '#/components/responses/ErrorResponse'
      security:
        - {}
        - JWT: []
      parameters:
        - name: term
          in: query
          required: false
          allowReserved: true
          schema:
            type: string
            default: ''
        - name: filters
          in: query
          required: false
          style: deepObject
          allowReserved: true
          schema:
            # JsonObject is used here instead of the full ZOD schema definition as
            #   resolution of recursive schemas isn't possible with the library we're using
            #   and it causes a performance hit when _trying_ to resolve them.
            $ref: '#/components/schemas/JsonObject'
        - name: types
          in: query
          required: false
          allowReserved: true
          schema:
            type: array
            items:
              type: string
        - name: pageCursor
          in: query
          required: false
          allowReserved: true
          schema:
            type: string
        - name: pageLimit
          in: query
          required: false
          allowReserved: true
          schema:
            type: integer
        - name: unknown
          in: query
          required: false
          # explode form is the equivalent to allow any extra query parameters
          style: form
          explode: true
          allowReserved: true
          schema:
            type: object
            additionalProperties: {}