Sigstore index API

The index API from Sigstore — 1 operation(s) for index.

Operations 1

POST /api/v1/index/retrieve Searches index by entry metadata #

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/sigstore-index-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

sigstore-index-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Rekor Index API
  description: Rekor is a cryptographically secure, immutable transparency log for signed software releases.
  version: 1.0.0
servers:
- url: http://rekor.sigstore.dev
tags:
- name: index
paths:
  /api/v1/index/retrieve:
    post:
      summary: Searches index by entry metadata
      description: 'EXPERIMENTAL - this endpoint is offered as best effort only and may be changed or removed in future releases.

        The results returned from this endpoint may be incomplete.

        '
      deprecated: true
      operationId: searchIndex
      tags:
      - index
      responses:
        200:
          description: Returns zero or more entry UUIDs from the transparency log based on search query
          content:
            application/json:
              schema:
                type: array
                items:
                  type: string
                  description: Entry UUID in transparency log
                  pattern: ^([0-9a-fA-F]{64}|[0-9a-fA-F]{80})$
        400:
          $ref: '#/components/responses/BadContent'
        default:
          $ref: '#/components/responses/InternalServerError'
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/SearchIndex'
        required: true
components:
  schemas:
    SearchIndex:
      type: object
      properties:
        email:
          type: string
          format: email
        publicKey:
          type: object
          properties:
            format:
              type: string
              enum:
              - pgp
              - x509
              - minisign
              - ssh
              - tuf
            content:
              type: string
              format: byte
          required:
          - format
        hash:
          type: string
          pattern: ^(sha512:)?[0-9a-fA-F]{128}$|^(sha256:)?[0-9a-fA-F]{64}$|^(sha1:)?[0-9a-fA-F]{40}$
        operator:
          type: string
          enum:
          - and
          - or
    Error:
      type: object
      properties:
        code:
          type: integer
        message:
          type: string
  responses:
    InternalServerError:
      description: There was an internal error in the server while processing the request
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
    BadContent:
      description: The content supplied to the server was invalid
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'