Unified.to passthrough API

The passthrough API from Unified.to — 1 operation(s) for passthrough.

Documentation

Specifications

Schemas & Data

📊
JSONSchema
https://raw.githubusercontent.com/api-evangelist/unified-to/refs/heads/main/json-schema/unified-to-accounting-account-schema.json
📊
JSONSchema
https://raw.githubusercontent.com/api-evangelist/unified-to/refs/heads/main/json-schema/unified-to-accounting-invoice-schema.json
📊
JSONSchema
https://raw.githubusercontent.com/api-evangelist/unified-to/refs/heads/main/json-schema/unified-to-accounting-transaction-schema.json
📊
JSONSchema
https://raw.githubusercontent.com/api-evangelist/unified-to/refs/heads/main/json-schema/unified-to-ats-job-schema.json
📊
JSONSchema
https://raw.githubusercontent.com/api-evangelist/unified-to/refs/heads/main/json-schema/unified-to-ats-candidate-schema.json
📊
JSONSchema
https://raw.githubusercontent.com/api-evangelist/unified-to/refs/heads/main/json-schema/unified-to-ats-application-schema.json
📊
JSONSchema
https://raw.githubusercontent.com/api-evangelist/unified-to/refs/heads/main/json-schema/unified-to-calendar-event-schema.json
📊
JSONSchema
https://raw.githubusercontent.com/api-evangelist/unified-to/refs/heads/main/json-schema/unified-to-crm-contact-schema.json
📊
JSONSchema
https://raw.githubusercontent.com/api-evangelist/unified-to/refs/heads/main/json-schema/unified-to-crm-company-schema.json
📊
JSONSchema
https://raw.githubusercontent.com/api-evangelist/unified-to/refs/heads/main/json-schema/unified-to-crm-deal-schema.json
📊
JSONSchema
https://raw.githubusercontent.com/api-evangelist/unified-to/refs/heads/main/json-schema/unified-to-commerce-item-schema.json
📊
JSONSchema
https://raw.githubusercontent.com/api-evangelist/unified-to/refs/heads/main/json-schema/unified-to-commerce-review-schema.json
📊
JSONSchema
https://raw.githubusercontent.com/api-evangelist/unified-to/refs/heads/main/json-schema/unified-to-hris-employee-schema.json

Other Resources

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/unified-to-passthrough-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

unified-to-passthrough-api-openapi.yml Raw ↑
openapi: 3.0.0
info:
  contact:
    email: hello@unified.to
    url: https://unified.to/contact
  description: One API to Rule Them All
  termsOfService: https://unified.to/tos
  title: Unified.to account passthrough API
  version: '1.0'
servers:
- description: North American data region
  url: https://api.unified.to
- description: European data region
  url: https://api-eu.unified.to
- description: Australian data region
  url: https://api-au.unified.to
security:
- jwt: []
tags:
- name: passthrough
paths:
  /passthrough/{connection_id}/{path}:
    delete:
      operationId: removePassthrough
      parameters:
      - explode: true
        in: query
        name: query
        schema:
          additionalProperties: true
        style: form
      - description: ID of the connection
        in: path
        name: connection_id
        required: true
        schema:
          type: string
      - in: path
        name: path
        required: true
        schema:
          type: string
      responses:
        '204':
          description: No content
          headers:
            Date:
              required: false
              schema:
                type: string
        '205':
          description: Reset content
          headers:
            Date:
              required: false
              schema:
                type: string
        '304':
          description: Not modified
          headers:
            Date:
              required: false
              schema:
                type: string
        default:
          content:
            '*/*':
              schema:
                format: binary
                type: string
            application/json:
              schema: {}
            application/xml:
              schema:
                type: string
            text/csv:
              schema:
                type: string
            text/plain:
              schema:
                type: string
          description: Successful
          headers:
            Content-Type:
              required: false
              schema:
                type: string
      security:
      - jwt: []
      summary: Passthrough Delete
      tags:
      - passthrough
    get:
      operationId: listPassthroughs
      parameters:
      - explode: true
        in: query
        name: query
        schema:
          additionalProperties: true
        style: form
      - description: ID of the connection
        in: path
        name: connection_id
        required: true
        schema:
          type: string
      - in: path
        name: path
        required: true
        schema:
          type: string
      responses:
        '204':
          description: No content
          headers:
            Date:
              required: false
              schema:
                type: string
        '205':
          description: Reset content
          headers:
            Date:
              required: false
              schema:
                type: string
        '304':
          description: Not modified
          headers:
            Date:
              required: false
              schema:
                type: string
        default:
          content:
            '*/*':
              schema:
                format: binary
                type: string
            application/json:
              schema: {}
            application/xml:
              schema:
                type: string
            text/csv:
              schema:
                type: string
            text/plain:
              schema:
                type: string
          description: Successful
          headers:
            Content-Type:
              required: false
              schema:
                type: string
      security:
      - jwt: []
      summary: Passthrough Get
      tags:
      - passthrough
    patch:
      operationId: patchPassthrough
      parameters:
      - explode: true
        in: query
        name: query
        schema:
          additionalProperties: true
        style: form
      - description: ID of the connection
        in: path
        name: connection_id
        required: true
        schema:
          type: string
      - in: path
        name: path
        required: true
        schema:
          type: string
      requestBody:
        content:
          '*/*':
            schema:
              format: binary
              type: string
          application/json:
            schema: {}
          text/plain:
            schema: {}
        description: integration-specific payload
      responses:
        '204':
          description: No content
          headers:
            Date:
              required: false
              schema:
                type: string
        '205':
          description: Reset content
          headers:
            Date:
              required: false
              schema:
                type: string
        '304':
          description: Not modified
          headers:
            Date:
              required: false
              schema:
                type: string
        default:
          content:
            '*/*':
              schema:
                format: binary
                type: string
            application/json:
              schema: {}
            application/xml:
              schema:
                type: string
            text/csv:
              schema:
                type: string
            text/plain:
              schema:
                type: string
          description: Successful
          headers:
            Content-Type:
              required: false
              schema:
                type: string
      security:
      - jwt: []
      summary: Passthrough Put
      tags:
      - passthrough
    post:
      operationId: createPassthrough
      parameters:
      - explode: true
        in: query
        name: query
        schema:
          additionalProperties: true
        style: form
      - description: ID of the connection
        in: path
        name: connection_id
        required: true
        schema:
          type: string
      - in: path
        name: path
        required: true
        schema:
          type: string
      requestBody:
        content:
          '*/*':
            schema:
              format: binary
              type: string
          application/json:
            schema: {}
          text/plain:
            schema: {}
        description: integration-specific payload
      responses:
        '204':
          description: No content
          headers:
            Date:
              required: false
              schema:
                type: string
        '205':
          description: Reset content
          headers:
            Date:
              required: false
              schema:
                type: string
        '304':
          description: Not modified
          headers:
            Date:
              required: false
              schema:
                type: string
        default:
          content:
            '*/*':
              schema:
                format: binary
                type: string
            application/json:
              schema: {}
            application/xml:
              schema:
                type: string
            text/csv:
              schema:
                type: string
            text/plain:
              schema:
                type: string
          description: Successful
          headers:
            Content-Type:
              required: false
              schema:
                type: string
      security:
      - jwt: []
      summary: Passthrough Post
      tags:
      - passthrough
    put:
      operationId: updatePassthrough
      parameters:
      - explode: true
        in: query
        name: query
        schema:
          additionalProperties: true
        style: form
      - description: ID of the connection
        in: path
        name: connection_id
        required: true
        schema:
          type: string
      - in: path
        name: path
        required: true
        schema:
          type: string
      requestBody:
        content:
          '*/*':
            schema:
              format: binary
              type: string
          application/json:
            schema: {}
          text/plain:
            schema: {}
        description: integration-specific payload
      responses:
        '204':
          description: No content
          headers:
            Date:
              required: false
              schema:
                type: string
        '205':
          description: Reset content
          headers:
            Date:
              required: false
              schema:
                type: string
        '304':
          description: Not modified
          headers:
            Date:
              required: false
              schema:
                type: string
        default:
          content:
            '*/*':
              schema:
                format: binary
                type: string
            application/json:
              schema: {}
            application/xml:
              schema:
                type: string
            text/csv:
              schema:
                type: string
            text/plain:
              schema:
                type: string
          description: Successful
          headers:
            Content-Type:
              required: false
              schema:
                type: string
      security:
      - jwt: []
      summary: Passthrough Put
      tags:
      - passthrough
components:
  securitySchemes:
    jwt:
      in: header
      name: authorization
      type: apiKey
externalDocs:
  description: API Documentation
  url: https://docs.unified.to