Endgame Protected Static API

The Protected Static API from Endgame — 2 operation(s) for protected static.

Operations 4

GET /protected-static/objects List protected-static objects #
PUT /protected-static/objects Upload or replace a protected-static object #
DELETE /protected-static/objects Delete a protected-static object #
GET /protected-static/objects/content Download a protected-static object's content #

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/end-game-protected-static-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 email required.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

end-game-protected-static-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Endgame Public Protected Static API
  version: 1.0.0
servers:
- url: https://app.endgame.io
security:
- bearerAuth: []
tags:
- name: Protected Static
paths:
  /protected-static/objects:
    get:
      operationId: protectedStatic.list
      summary: List protected-static objects
      parameters:
      - name: prefix
        in: query
        schema:
          type: string
          maxLength: 1024
        allowEmptyValue: true
        allowReserved: true
      - name: maxResults
        in: query
        schema:
          default: 100
          type: integer
          minimum: 1
          maximum: 1000
        allowEmptyValue: true
        allowReserved: true
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: object
                properties:
                  objects:
                    type: array
                    items:
                      type: object
                      properties:
                        path:
                          type: string
                        size:
                          type: integer
                        contentType:
                          anyOf:
                          - type: string
                          - type: 'null'
                        updated:
                          anyOf:
                          - type: string
                          - type: 'null'
                        etag:
                          anyOf:
                          - type: string
                          - type: 'null'
                      required:
                      - path
                      - size
                      - contentType
                      - updated
                      - etag
                required:
                - objects
      tags:
      - Protected Static
    put:
      operationId: protectedStatic.put
      summary: Upload or replace a protected-static object
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                path:
                  type: string
                  minLength: 1
                  maxLength: 1024
                contentType:
                  type: string
                  minLength: 1
                  maxLength: 255
                contentBase64:
                  type: string
                  minLength: 1
                  maxLength: 10485760
              required:
              - path
              - contentType
              - contentBase64
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: object
                properties:
                  path:
                    type: string
                  size:
                    type: integer
                  contentType:
                    anyOf:
                    - type: string
                    - type: 'null'
                  updated:
                    anyOf:
                    - type: string
                    - type: 'null'
                  etag:
                    anyOf:
                    - type: string
                    - type: 'null'
                required:
                - path
                - size
                - contentType
                - updated
                - etag
      tags:
      - Protected Static
    delete:
      operationId: protectedStatic.delete
      summary: Delete a protected-static object
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                path:
                  type: string
                  minLength: 1
                  maxLength: 1024
              required:
              - path
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: object
                properties:
                  path:
                    type: string
                  deleted:
                    const: true
                required:
                - path
                - deleted
      tags:
      - Protected Static
  /protected-static/objects/content:
    get:
      operationId: protectedStatic.getContent
      summary: Download a protected-static object's content
      parameters:
      - name: path
        in: query
        required: true
        schema:
          type: string
          minLength: 1
          maxLength: 1024
        allowEmptyValue: true
        allowReserved: true
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                anyOf:
                - {}
                - not: {}
      tags:
      - Protected Static
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: Endgame API key (eak_*) or WorkOS JWT. Obtain an API key from Settings → API keys.