Structify whitelabel API

Whitelabeled service proxy endpoints

Operations 3

GET /whitelabel/{service}/estimate-cost/{path} #
GET /whitelabel/{service}/{path} #
POST /whitelabel/{service}/{path} #

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/structify-whitelabel-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

structify-whitelabel-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  contact:
    email: team@structify.ai
    name: Structify Team
  description: Every enterprise's data team.
  license:
    name: Discuss directly with founders for license.
    url: https://structify.ai
  title: Structify account Whitelabel API
  version: 0.1.0
servers:
- description: Production server
  url: https://api.structify.ai
- description: Local server
  url: http://localhost:8080
security:
- api_key: []
- session_token: []
tags:
- description: Whitelabeled service proxy endpoints
  name: whitelabel
paths:
  /whitelabel/{service}/estimate-cost/{path}:
    get:
      operationId: whitelabel_estimate_cost
      parameters:
      - in: path
        name: service
        required: true
        schema:
          type: string
      - in: path
        name: path
        required: true
        schema:
          type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/WhitelabelCostEstimateResponse'
          description: Whitelabel cost estimate returned.
        '404':
          description: Whitelabel route not found.
      security:
      - session_token: []
      - api_key: []
      tags:
      - whitelabel
  /whitelabel/{service}/{path}:
    get:
      operationId: whitelabel_proxy_get
      parameters:
      - in: path
        name: service
        required: true
        schema:
          type: string
      - in: path
        name: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Whitelabel request proxied.
        '400':
          description: Invalid request.
        '404':
          description: Whitelabel route not found.
        '500':
          description: Upstream request failed.
      security:
      - session_token: []
      - api_key: []
      tags:
      - whitelabel
    post:
      operationId: whitelabel_proxy_post
      parameters:
      - in: path
        name: service
        required: true
        schema:
          type: string
      - in: path
        name: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Whitelabel request proxied.
        '400':
          description: Invalid request.
        '404':
          description: Whitelabel route not found.
        '500':
          description: Upstream request failed.
      security:
      - session_token: []
      - api_key: []
      tags:
      - whitelabel
components:
  schemas:
    WhitelabelCostEstimateResponse:
      properties:
        estimated_credits:
          format: int64
          minimum: 0
          type: integer
      required:
      - estimated_credits
      type: object
  securitySchemes:
    api_key:
      in: header
      name: api_key
      type: apiKey
    session_token:
      scheme: bearer
      type: http