Openprovider Transaction API

The Transaction API from Openprovider — 1 operation(s) for transaction.

Operations 1

GET /v1beta/transactions List transactions #

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/openprovider-transaction-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 form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

openprovider-transaction-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: REST AdditionalData Transaction API
  version: 1.0.0-beta
servers:
- url: https://api.openprovider.eu
security:
- Bearer: []
tags:
- name: Transaction
paths:
  /v1beta/transactions:
    get:
      tags:
      - Transaction
      summary: List transactions
      operationId: ListTransactions
      parameters:
      - description: The limit.
        name: limit
        in: query
        schema:
          type: integer
          format: int32
      - description: The offset.
        name: offset
        in: query
        schema:
          type: integer
          format: int32
      - description: The order.
        name: order
        in: query
        schema:
          type: string
      - description: The order by.
        name: order_by
        in: query
        schema:
          type: string
      - description: The start creation date.
        name: start_creation_date
        in: query
        schema:
          type: string
      - description: The end creation date.
        name: end_creation_date
        in: query
        schema:
          type: string
      - description: The filter for subject.
        name: filter_for_subject
        in: query
        schema:
          type: string
      responses:
        '200':
          description: A successful response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/transactionListTransactionsResponse'
        default:
          description: (empty)
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/errorError'
components:
  schemas:
    transactionPrices:
      type: object
      title: Prices
      properties:
        product:
          title: Price in product currency
          $ref: '#/components/schemas/transactionPrice'
        reseller:
          title: Price in reseller currency
          $ref: '#/components/schemas/transactionPrice'
      example:
        product:
          currency: EUR
          price: 0
        reseller:
          currency: EUR
          price: 0
    transactionListTransactionsResponseData:
      type: object
      title: ListTransactionsResponseData
      properties:
        results:
          type: array
          title: The results
          items:
            $ref: '#/components/schemas/transactionListTransactionsResponseDataResults'
        total:
          type: integer
          format: int32
          title: The total
      example:
        results:
        - action: NEW
          creation_date: '2006-09-13 16:19:05'
          discount: 0
          exchange_rate: 0
          object_type: ''
          price:
            product:
              currency: EUR
              price: 0
            reseller:
              currency: EUR
              price: 0
          quantity: 1
          reference_id: 1
          setup:
            product:
              currency: EUR
              price: 0
            reseller:
              currency: EUR
              price: 0
          subject: ''
          total:
            product:
              currency: EUR
              price: 0
            reseller:
              currency: EUR
              price: 0
          type: transaction
          vat: 1
        total: 5389
    transactionPrice:
      type: object
      title: Price
      properties:
        currency:
          type: string
          title: The currency
        price:
          type: number
          format: double
          title: The price
      example:
        currency: EUR
        price: 0
    errorError:
      type: object
      title: Error
      properties:
        code:
          type: integer
          format: int32
          title: Error code
        data:
          type: string
          title: Additional error description
        desc:
          type: string
          title: Error description
      example:
        code: 0
        data: ''
        desc: ''
    transactionListTransactionsResponse:
      type: object
      title: ListTransactionsResponse
      properties:
        code:
          type: integer
          format: int32
          title: The code
        data:
          title: The data
          $ref: '#/components/schemas/transactionListTransactionsResponseData'
        desc:
          type: string
          title: The desc
        maintenance:
          type: boolean
          format: boolean
          title: The maintenance
        warnings:
          type: array
          title: The warnings
          items:
            $ref: '#/components/schemas/errorWarning'
      example:
        code: 0
        data:
          results:
          - action: NEW
            creation_date: '2006-09-13 16:19:05'
            discount: 0
            exchange_rate: 0
            object_type: ''
            price:
              product:
                currency: EUR
                price: 0
              reseller:
                currency: EUR
                price: 0
            quantity: 1
            reference_id: 1
            setup:
              product:
                currency: EUR
                price: 0
              reseller:
                currency: EUR
                price: 0
            subject: ''
            total:
              product:
                currency: EUR
                price: 0
              reseller:
                currency: EUR
                price: 0
            type: transaction
            vat: 1
          total: 5389
        desc: ''
    transactionListTransactionsResponseDataResults:
      type: object
      title: ListTransactionsResponseDataResults
      properties:
        action:
          type: string
          title: The action
        creation_date:
          type: string
          title: The creation date
        discount:
          type: number
          format: double
          title: The discount
        exchange_rate:
          type: number
          format: double
          title: The exchange rate
        object_type:
          type: string
          title: The object type
        price:
          title: The price
          $ref: '#/components/schemas/transactionPrices'
        quantity:
          type: integer
          format: int32
          title: The quantity
        reference_id:
          type: integer
          format: int32
          title: The reference id
        setup:
          title: The setup
          $ref: '#/components/schemas/transactionPrices'
        subject:
          type: string
          title: The subject
        total:
          title: The total
          $ref: '#/components/schemas/transactionPrices'
        type:
          type: string
          title: The type
        vat:
          type: integer
          format: int32
          title: The vat
      example:
        action: NEW
        creation_date: '2006-09-13 16:19:05'
        discount: 0
        exchange_rate: 0
        object_type: ''
        price:
          product:
            currency: EUR
            price: 0
          reseller:
            currency: EUR
            price: 0
        quantity: 1
        reference_id: 1
        setup:
          product:
            currency: EUR
            price: 0
          reseller:
            currency: EUR
            price: 0
        subject: ''
        total:
          product:
            currency: EUR
            price: 0
          reseller:
            currency: EUR
            price: 0
        type: transaction
        vat: 1
    errorWarning:
      type: object
      title: Warning
      properties:
        code:
          type: integer
          format: int32
          title: Warning code
        data:
          type: string
          title: Additional warning description
        desc:
          type: string
          title: Warning description
      example:
        code: 0
        data: ''
        desc: ''
  securitySchemes:
    Bearer:
      type: apiKey
      name: Authorization
      in: header
      x-linkTo: tag/descAuthentication
x-tagGroups:
- name: Introduction
  tags:
  - descAbout
  - descGettingStarted
  - descEndpoints
  - descAuthentication
- name: Quick Start
  tags:
  - descCustomerQuickstart
  - descDomainQuickstart
  - descTLDQuickstart
  - descDNSQuickstart
  - descSSLQuickstart
- name: Auth
  tags:
  - Auth
  - SpamExpert
- name: Billing
  tags:
  - InvoiceService
  - Payment
  - Transaction
- name: DNS
  tags:
  - DomainToken
  - NameserverService
  - NsGroupService
  - TemplateService
  - ZoneService
  - ZoneRecordService
- name: Domain
  tags:
  - DomainService
  - AdditionalData
  - CustomerAdditionalData
  - DomainPriceService
  - AuthCode
  - TldService
- name: EasyDmarc
  tags:
  - EasydmarcOrder
- name: Email template
  tags:
  - Email
- name: License
  tags:
  - LicenseService
- name: Reseller/Customer
  tags:
  - ContactService
  - Customer
  - EmailVerification
  - ResellerService
  - Settings
  - Statistics
  - TagService
- name: Spam Experts
  tags:
  - SEDomain
- name: SSL
  tags:
  - ApproverEmail
  - Csr
  - Order
  - OrderApproverEmail
  - OtpToken
  - Product