Alokai (formerly Vue Storefront) v2.2/instance/{namespace}/pod/{pod} API

The v2.2/instance/{namespace}/pod/{pod} API from Alokai (formerly Vue Storefront) — 1 operation(s) for v2.2/instance/{namespace}/pod/{pod}.

Operations 1

GET /v2.2/instance/{namespace}/pod/{pod} Fetch pod details

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-v2-2-instance-namespace-pod-pod-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-v2-2-instance-namespace-pod-pod-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: farmer cdn v2.2/instance/{namespace}/pod/{pod} V2.2/instance/{namespace}/pod/{pod} V2.2/instance/{namespace}/pod/{pod} API
  version: v1
servers:
- url: https://farmer.vuestorefront.cloud
  description: Base URL reconciled from apis.yml
tags:
- name: v2.2/instance/{namespace}/pod/{pod}
paths:
  /v2.2/instance/{namespace}/pod/{pod}:
    get:
      description: Fetch pod details
      parameters:
      - description: Pod name
        example: nginx-77dd45c46d-k82ll
        in: path
        name: pod
        required: true
        schema:
          type: string
        type: string
      - description: Namespace name
        example: project-europe-west1-gcp-storefrontcloud-io
        in: path
        name: namespace
        required: true
        schema:
          type: string
        type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PodDetails'
          description: Success
        '400':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
          description: Error
        '404':
          description: Pod not found
      security:
      - FarmerApiKey: []
        FarmerUserId: []
      summary: Fetch pod details
      tags:
      - v2.2/instance/{namespace}/pod/{pod}
components:
  schemas:
    ContainerStatusV22:
      properties:
        image:
          type: string
        name:
          type: string
        ready:
          type: boolean
        restarts:
          type: integer
        status:
          enum:
          - Waiting
          - Running
          - Terminated
          type: string
      type: object
    Error:
      properties:
        message:
          type: string
      type: object
    PodStatusV22:
      properties:
        containers:
          items:
            $ref: '#/components/schemas/ContainerStatusV22'
          type: array
        env_vars:
          $ref: '#/components/schemas/PodEnvVars'
        events:
          items:
            $ref: '#/components/schemas/Events'
          type: array
        is_ready:
          type: boolean
        is_rollout_active:
          type:
          - boolean
          - 'null'
        is_terminating:
          type: boolean
        labels:
          additionalProperties:
            type: string
          type: object
        name:
          type: string
        reason:
          type: string
        start_time:
          type: string
        status:
          enum:
          - Running
          - Pending
          - Failed
          - Unknown
          - Succeeded
          type: string
      type: object
    PodEnvVars:
      properties:
        containers:
          additionalProperties:
            additionalProperties:
              $ref: '#/components/schemas/PodEnvVar'
            description: Extra variables injected into the deployment
            type: object
          description: Extra variables injected into the deployment
          type: object
        errors:
          additionalProperties:
            type: string
          description: Errors getting env vars from containers
          type: object
      type: object
    PodDetails:
      properties:
        error:
          type: boolean
        message:
          type: string
        pod:
          $ref: '#/components/schemas/PodStatusV22'
      type: object
    Events:
      properties:
        count:
          type: string
        last_seen:
          type: string
        message:
          type: string
        reason:
          type: string
      type: object
    PodEnvVar:
      properties:
        container_name:
          type: string
        is_secret:
          description: Flag to mark environment variable as a secret
          type: boolean
        name:
          description: Environment variable name, the name has to match to the patern '^[a-zA-Z_][a-zA-Z0-9_]*$'.
          pattern: ^[a-zA-Z_][a-zA-Z0-9_]*$
          type: string
        value:
          type: string
      type: object