Apache OpenWhisk Namespaces API

The Namespaces API from Apache OpenWhisk — 3 operation(s) for namespaces.

Operations 3

GET /namespaces Apache OpenWhisk List Namespaces #
GET /namespaces/{namespace} Apache OpenWhisk Get Namespace #
GET /namespaces/{namespace}/limits Apache OpenWhisk Get Namespace Limits #

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/apache-openwhisk-namespaces-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

apache-openwhisk-namespaces-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Apache OpenWhisk REST Actions Namespaces API
  description: Apache OpenWhisk is an open-source serverless cloud platform. The REST API provides endpoints for managing actions, triggers, rules, packages, and activations for serverless function development.
  version: 1.0.0
  license:
    name: Apache 2.0
    url: https://www.apache.org/licenses/LICENSE-2.0
  contact:
    url: https://openwhisk.apache.org/
servers:
- url: https://{host}/api/v1
  description: Apache OpenWhisk API server
  variables:
    host:
      default: localhost:443
security:
- basicAuth: []
tags:
- name: Namespaces
paths:
  /namespaces:
    get:
      operationId: listNamespaces
      summary: Apache OpenWhisk List Namespaces
      description: Fetch a list of namespaces accessible to the authenticated user.
      tags:
      - Namespaces
      responses:
        '200':
          description: List of namespaces
          content:
            application/json:
              schema:
                type: array
                items:
                  type: string
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
  /namespaces/{namespace}:
    get:
      operationId: getNamespace
      summary: Apache OpenWhisk Get Namespace
      description: Get entities available in a namespace.
      tags:
      - Namespaces
      parameters:
      - $ref: '#/components/parameters/namespace'
      responses:
        '200':
          description: Namespace entities
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/NamespaceEntities'
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
  /namespaces/{namespace}/limits:
    get:
      operationId: getNamespaceLimits
      summary: Apache OpenWhisk Get Namespace Limits
      description: Get the resource limits for a namespace.
      tags:
      - Namespaces
      parameters:
      - $ref: '#/components/parameters/namespace'
      responses:
        '200':
          description: Namespace limits
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/NamespaceLimits'
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
components:
  parameters:
    namespace:
      name: namespace
      in: path
      required: true
      description: OpenWhisk namespace
      schema:
        type: string
        example: guest
  schemas:
    EntityRef:
      type: object
      properties:
        name:
          type: string
          description: Entity name
          example: hello
        annotations:
          type: array
          items:
            $ref: '#/components/schemas/KeyValue'
    KeyValue:
      type: object
      properties:
        key:
          type: string
          description: Parameter key
          example: name
        value:
          description: Parameter value
          example: World
    NamespaceLimits:
      type: object
      properties:
        concurrency:
          type: integer
          description: Maximum concurrent activations
          example: 1000
        minuteRate:
          type: integer
          description: Actions per minute limit
          example: 600
        hourRate:
          type: integer
          description: Actions per hour limit
          example: 36000
    NamespaceEntities:
      type: object
      properties:
        actions:
          type: array
          items:
            $ref: '#/components/schemas/EntityRef'
        triggers:
          type: array
          items:
            $ref: '#/components/schemas/EntityRef'
        rules:
          type: array
          items:
            $ref: '#/components/schemas/EntityRef'
  securitySchemes:
    basicAuth:
      type: http
      scheme: basic
      description: HTTP Basic authentication using OpenWhisk credentials
x-generated-from: documentation