QuotaPath payout API

The payout API from QuotaPath — 3 operation(s) for payout.

Operations 3

GET /payout/ #
GET /payout/resolved/ #
GET /payout/unresolved/ #

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/quotapath-payout-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

quotapath-payout-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: QuotaPath data Payout API
  description: Documentation for the QuotaPath API
  x-logo:
    url: https://storage.googleapis.com/quotapath-prod-app/qp_logos/logo_primary.png
    href: https://quotapath.com
  version: v1
servers:
- url: https://api.quotapath.com/v1
security:
- token_auth: []
tags:
- name: payout
paths:
  /payout/:
    parameters: []
    get:
      operationId: payout_list
      description: ''
      parameters:
      - name: limit
        in: query
        description: Number of results to return per page.
        required: false
        schema:
          type: integer
      - name: offset
        in: query
        description: The initial index from which to return the results.
        required: false
        schema:
          type: integer
      - name: updated_since
        in: query
        description: Unix timestamp in seconds. Specify to only return records updated after this timestamp.
        required: false
        schema:
          type: integer
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                required:
                - count
                - results
                type: object
                properties:
                  count:
                    type: integer
                  next:
                    type:
                    - string
                    - 'null'
                    format: uri
                  previous:
                    type:
                    - string
                    - 'null'
                    format: uri
                  results:
                    type: array
                    items:
                      $ref: '#/components/schemas/ExternalPayout'
      tags:
      - payout
  /payout/resolved/:
    parameters: []
    get:
      operationId: payout_resolved_list
      description: ''
      parameters:
      - name: limit
        in: query
        description: Number of results to return per page.
        required: false
        schema:
          type: integer
      - name: offset
        in: query
        description: The initial index from which to return the results.
        required: false
        schema:
          type: integer
      - name: updated_since
        in: query
        description: Unix timestamp in seconds. Specify to only return records updated after this timestamp.
        required: false
        schema:
          type: integer
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                required:
                - count
                - results
                type: object
                properties:
                  count:
                    type: integer
                  next:
                    type:
                    - string
                    - 'null'
                    format: uri
                  previous:
                    type:
                    - string
                    - 'null'
                    format: uri
                  results:
                    type: array
                    items:
                      $ref: '#/components/schemas/ExternalPayout'
      tags:
      - payout
  /payout/unresolved/:
    parameters: []
    get:
      operationId: payout_unresolved_list
      description: ''
      parameters:
      - name: limit
        in: query
        description: Number of results to return per page.
        required: false
        schema:
          type: integer
      - name: offset
        in: query
        description: The initial index from which to return the results.
        required: false
        schema:
          type: integer
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                required:
                - count
                - results
                type: object
                properties:
                  count:
                    type: integer
                  next:
                    type:
                    - string
                    - 'null'
                    format: uri
                  previous:
                    type:
                    - string
                    - 'null'
                    format: uri
                  results:
                    type: array
                    items:
                      $ref: '#/components/schemas/ExternalUnresolved'
      tags:
      - payout
components:
  schemas:
    ExternalPayout:
      required:
      - deal_term_duration
      - target_user_name
      - value
      type: object
      properties:
        date:
          title: Date
          description: date of the payouts, distinct from creation date as the date payouts was performed
          type: string
          format: date
        deal_date:
          title: Deal date
          description: deal date at time of creation
          type:
          - string
          - 'null'
          format: date
        deal_id:
          title: Deal id
          description: nullable foreign key to deal (historical)
          type:
          - integer
          - 'null'
          maximum: 9223372036854776000
          minimum: -9223372036854776000
        deal_integration_id:
          title: Deal integration id
          description: deal integration id at time of creation
          type:
          - string
          - 'null'
          minLength: 1
        deal_integration_source:
          title: Deal integration source
          description: deal integration source at time of creation
          type:
          - string
          - 'null'
          maxLength: 255
          minLength: 1
        deal_name:
          title: Deal name
          description: deal name at time of creation
          type:
          - string
          - 'null'
          maxLength: 255
          minLength: 1
        deal_term_start_date:
          title: Deal term start date
          description: optional deal metadata term_start_date at time of creation
          type:
          - string
          - 'null'
          format: date
        deal_term_end_date:
          title: Deal term end date
          description: optional deal metadata term_end_date at time of creation
          type:
          - string
          - 'null'
          format: date
        deal_term_duration:
          title: Deal term duration
          type: number
        deal_uuid:
          title: Deal uuid
          description: optional deal uuid at time of creation
          type:
          - string
          - 'null'
          format: uuid
        id:
          title: Id
          type: string
          format: uuid
          readOnly: true
        path_name:
          title: Path name
          description: path name at time of creation
          type:
          - string
          - 'null'
          maxLength: 255
          minLength: 1
        plan_name:
          title: Plan name
          description: Plan name at time of creation
          type:
          - string
          - 'null'
          maxLength: 255
          minLength: 1
        target_user_email:
          title: Target user email
          description: User email (historical)
          type:
          - string
          - 'null'
          minLength: 1
        target_user_name:
          title: Target user name
          description: User first + last name, or email if unavailable, at time of creation
          type: string
          minLength: 1
        updated_ts:
          title: Updated ts
          type: string
          readOnly: true
        value:
          title: Value
          type: number
    ExternalUnresolved:
      required:
      - deal_date
      - deal_id
      - deal_integration_id
      - deal_integration_source
      - deal_name
      - deal_term_start_date
      - deal_term_end_date
      - deal_term_duration
      - deal_uuid
      - deal_value
      - kind
      - owed
      - path_name
      - plan_name
      - target_user_email
      - target_user_name
      - value
      type: object
      properties:
        updated_ts:
          title: Updated ts
          type: string
          readOnly: true
        deal_date:
          title: Deal date
          type: string
          format: date
        deal_id:
          title: Deal id
          type: integer
        deal_integration_id:
          title: Deal integration id
          type: string
          minLength: 1
        deal_integration_source:
          title: Deal integration source
          type: string
          minLength: 1
        deal_name:
          title: Deal name
          type: string
          minLength: 1
        deal_term_start_date:
          title: Deal term start date
          type: string
          format: date
        deal_term_end_date:
          title: Deal term end date
          type: string
          format: date
        deal_term_duration:
          title: Deal term duration
          type: number
        deal_uuid:
          title: Deal uuid
          description: deal id suitable for api usage
          type: string
          format: uuid
        deal_value:
          title: Deal value
          description: Dollar amount of associated deal.
          type: number
        kind:
          title: Kind
          description: 'Kind of payout: one of unresolved or partially_resolved.'
          type: string
          minLength: 1
        owed:
          title: Owed
          description: Dollar amount left unresolved.
          type: number
        path_name:
          title: Path name
          type: string
          minLength: 1
        plan_name:
          title: Plan name
          type: string
          minLength: 1
        target_user_email:
          title: Target user email
          type: string
          minLength: 1
        target_user_name:
          title: Target user name
          type: string
          minLength: 1
        value:
          title: Value
          description: Dollar amount already paid out.
          type: number
  securitySchemes:
    token_auth:
      type: apiKey
      name: Authorization
      in: header
      description: 'API Key authentication header. Prefix QuotaPath-generated api key with ''Token '' in Authorization header value. Example: ''Token abcdef12345'''