Windmill npm_proxy API

The npm_proxy API from Windmill — 4 operation(s) for npm_proxy.

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/windmill-npm-proxy-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

windmill-npm-proxy-api-openapi.yml Raw ↑
openapi: 3.0.3
info:
  version: 1.694.0
  title: Windmill admin npm_proxy API
  contact:
    name: Windmill Team
    email: contact@windmill.dev
    url: https://windmill.dev
  license:
    name: Apache 2.0
    url: https://www.apache.org/licenses/LICENSE-2.0.html
  x-logo:
    url: https://windmill.dev/img/windmill.svg
servers:
- url: /api
security:
- bearerAuth: []
- cookieAuth: []
tags:
- name: npm_proxy
paths:
  /w/{workspace}/npm_proxy/metadata/{package}:
    get:
      summary: Get Npm Package Metadata from Private Registry
      operationId: getNpmPackageMetadata
      tags:
      - npm_proxy
      parameters:
      - $ref: '#/components/parameters/WorkspaceId'
      - name: package
        description: npm package name
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: package metadata
          content:
            application/json:
              schema:
                type: object
                properties:
                  tags:
                    type: object
                    additionalProperties:
                      type: string
                  versions:
                    type: array
                    items:
                      type: string
  /w/{workspace}/npm_proxy/resolve/{package}:
    get:
      summary: Resolve Npm Package Version from Private Registry
      operationId: resolveNpmPackageVersion
      tags:
      - npm_proxy
      parameters:
      - $ref: '#/components/parameters/WorkspaceId'
      - name: package
        description: npm package name
        in: path
        required: true
        schema:
          type: string
      - name: tag
        description: version tag or reference
        in: query
        required: false
        schema:
          type: string
      responses:
        '200':
          description: resolved version
          content:
            application/json:
              schema:
                type: object
                properties:
                  version:
                    type: string
                    nullable: true
  /w/{workspace}/npm_proxy/filetree/{package}/{version}:
    get:
      summary: Get Npm Package File Tree from Private Registry
      operationId: getNpmPackageFiletree
      tags:
      - npm_proxy
      parameters:
      - $ref: '#/components/parameters/WorkspaceId'
      - name: package
        description: npm package name
        in: path
        required: true
        schema:
          type: string
      - name: version
        description: package version
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: package file tree
          content:
            application/json:
              schema:
                type: object
                properties:
                  default:
                    type: string
                  files:
                    type: array
                    items:
                      type: object
                      properties:
                        name:
                          type: string
  /w/{workspace}/npm_proxy/file/{package}/{version}/{filepath}:
    get:
      summary: Get Specific File from Npm Package in Private Registry
      operationId: getNpmPackageFile
      tags:
      - npm_proxy
      parameters:
      - $ref: '#/components/parameters/WorkspaceId'
      - name: package
        description: npm package name
        in: path
        required: true
        schema:
          type: string
      - name: version
        description: package version
        in: path
        required: true
        schema:
          type: string
      - name: filepath
        description: file path within package
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: file content
          content:
            text/plain:
              schema:
                type: string
components:
  parameters:
    WorkspaceId:
      name: workspace
      in: path
      required: true
      schema:
        type: string
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
    cookieAuth:
      type: apiKey
      in: cookie
      name: token
externalDocs:
  description: documentation portal
  url: https://windmill.dev