StackOne Proxy API

The Proxy API from StackOne — 1 operation(s) for 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/stackone-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

stackone-proxy-api-openapi.yml Raw ↑
openapi: 3.0.0
info:
  title: Marketing Accounts Proxy API
  description: The documentation for the StackOne Unified API - MARKETING
  contact: {}
  version: 1.0.0
servers:
- url: https://api.stackone.com
tags:
- name: Proxy
paths:
  /unified/proxy:
    post:
      tags:
      - Proxy
      summary: Proxy Request
      operationId: stackone_proxy_request
      parameters:
      - name: x-account-id
        in: header
        description: The account identifier
        required: true
        schema:
          type: string
      requestBody:
        description: The request body
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ProxyRequestBody'
        required: true
      responses:
        '500':
          description: Server error while executing the request.
        '501':
          description: This functionality is not implemented.
        '200':
          description: The proxy request was successful.
        '400':
          description: Invalid request.
        '403':
          description: Forbidden.
        '412':
          description: 'Precondition failed: linked account belongs to a disabled integration.'
        '429':
          description: Too many requests.
      security:
      - basic: []
      x-speakeasy-name-override: proxy_request
components:
  schemas:
    ProxyRequestBody:
      type: object
      properties:
        body:
          type: object
          description: The body of the request
        url:
          type: string
          description: The base url of the request
          default: ''
          example: https://api.sample-integration.com/v1
        method:
          type: string
          enum:
          - get
          - post
          - put
          - delete
          - patch
          - job
          description: The method of the request
          default: get
        path:
          type: string
          description: The path of the request including any query paramters
          default: ''
          example: /employees/directory
        headers:
          type: object
          description: The headers to send in the request
          example:
            Accept: application/json
  securitySchemes:
    basic:
      type: http
      scheme: basic