CyCognito Revalidation API

The Revalidation API from CyCognito — 1 operation(s) for revalidation.

Operations 1

POST /v1/revalidate Initiate revalidation #

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/cycognito-revalidation-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

cycognito-revalidation-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  version: 0.0.1
  title: CyCognito API V1 Reference Revalidation API
  description: The CyCognito API V1 is a REST API that allows you to post and get data from our main data entities—assets and issues.
tags:
- name: Revalidation
paths:
  /v1/revalidate:
    post:
      description: Trigger a revalidation on selected assets or asset groups (and by association, on their related issues).
      security:
      - apiAuth: []
      summary: Initiate revalidation
      tags:
      - Revalidation
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                entity-ids:
                  description: A comma-separated list in which each item contains the unique ID for the assets and issues that you would like to revalidate. The unique ID corresponds to the `id` field (from the *Retrieve assets* and *Search issues* responses) and should be in the format `<asset_type>/<asset_id>` (for assets), or `issue/<affected_asset>-<issue_id>` (for issues).
                  type: array
                  items:
                    type: string
                  example:
                  - ip/1.1.1.1
                  - domain/example.com
                  - webapp/example.com
                  - issue/CVE-1234-56789
      responses:
        '200':
          content:
            application/json:
              schema:
                type: object
                properties:
                  result:
                    description: Indicates the outcome of the revalidation request. When the response status is 200, displays *success*. When the response status is 400, displays *failed*.
                    type: string
                    example: success
                  revalidations-for-request:
                    description: The number of entity IDs included in the revalidation request.
                    type: integer
                    example: '123'
                  revalidations-left:
                    description: The remaining number of revalidations available for the realm. When the response status is 200, this number is updated post-action. When the response status is 400, it shows the initial count.
                    type: integer
                    example: '4567'
                required:
                - result
                - revalidations-for-request
                - revalidations-left
      operationId: postV1Revalidate
      x-operation-id-source: derived
components:
  securitySchemes:
    apiAuth:
      type: apiKey
      name: Authorization
      in: header