Alokai (formerly Vue Storefront) cdn API

The cdn API from Alokai (formerly Vue Storefront) — 2 operation(s) for cdn.

Operations 2

DELETE /cdn_cache/{instance}/host/{host}/path/{path} Endpoint to invalidate uri on specific instance for specific domain
DELETE /cdn_cache/{instance}/path/{path} Endpoint to invalidate uri on specific instance

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/alokai-formerly-vue-storefront-cdn-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

alokai-formerly-vue-storefront-cdn-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: farmer Cdn API
  version: v1
servers:
- url: https://farmer.vuestorefront.cloud
  description: Base URL reconciled from apis.yml
tags:
- name: cdn
paths:
  /cdn_cache/{instance}/host/{host}/path/{path}:
    delete:
      tags:
      - cdn
      security: []
      parameters:
      - name: host
        schema:
          type: string
        description: 'domain invalidate for example: example.com'
        required: true
        in: host
      - name: path
        schema:
          type: string
        description: 'base64 path to invalidate for example: cHJvZHVjdC9saXN0LzE='
        required: true
        in: path
      - name: instance
        schema:
          type: string
        description: 'instance name for example: project-europe-west1-gcp-storefrontcloud-io'
        required: true
        in: path
      responses:
        '500':
          content:
            application/json:
              schema:
                type: object
                properties: {}
          status: 200
          description: error occurred during invalidation attempt
        '200':
          content:
            '*/*':
              schema:
                type: object
                properties: {}
          status: 200
          description: Invalidation in progress
      description: Endpoint to flush CDN cache on specific instance for specific URI. To flush Backend Cache use `/flush_cache` endpoint.
      summary: Endpoint to invalidate uri on specific instance for specific domain
  /cdn_cache/{instance}/path/{path}:
    delete:
      tags:
      - cdn
      security: []
      parameters:
      - name: path
        schema:
          type: string
        description: 'base64 path to invalidate for example: cHJvZHVjdC9saXN0LzE='
        required: true
        in: path
      - name: instance
        schema:
          type: string
        description: 'instance name for example: project-europe-west1-gcp-storefrontcloud-io'
        required: true
        in: path
      responses:
        '500':
          content:
            application/json:
              schema:
                type: object
                properties: {}
          status: 200
          description: error occurred during invalidation attempt
        '200':
          content:
            '*/*':
              schema:
                type: object
                properties: {}
          status: 200
          description: Invalidation in progress
      description: Endpoint to flush CDN cache on specific instance for specific URI. To flush Backend Cache use `/flush_cache` endpoint.
      summary: Endpoint to invalidate uri on specific instance