Slope Transactions API

The Transactions API from Slope — 1 operation(s) for transactions.

Operations 1

GET /v4/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/slope-transactions-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

slope-transactions-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Slope v4 Auth Transactions API
  description: 'Slope v4 API - embedded credit and B2B buy-now-pay-later (BNPL) infrastructure: customers, orders/checkout, adjustments (refunds), repayments, payout accounts, prescreens, transactions, and sandbox simulation.'
  version: 1.0.0
  contact:
    name: Slope Developer Support
    url: https://developers.slopepay.com/
    email: support@slopepay.com
servers:
- url: https://api.slopepay.com
  description: production
- url: https://api.sandbox.slopepay.com
  description: sandbox
tags:
- name: Transactions
paths:
  /v4/transactions:
    get:
      description: Lists all transactions using pagination
      parameters:
      - name: limit
        required: false
        in: query
        description: The maximum number of objects to list.
        schema:
          type: integer
          minimum: 0
          maximum: 50
      - name: orderBy
        required: false
        in: query
        description: The object attribute(s) to sort by.
        schema:
          type: array
          items:
            type: string
            enum:
            - postedAt
            - id
      - name: order
        required: false
        in: query
        description: The direction to sort by, one of `asc` or `desc`.
        schema:
          enum:
          - asc
          - desc
          type: string
      - name: beforeCursor
        required: false
        in: query
        description: The cursor used to fetch the previous page of objects.
        schema:
          type: string
      - name: afterCursor
        required: false
        in: query
        description: The cursor used to fetch the next page of objects.
        schema:
          type: string
      responses:
        '200':
          description: The paginated list of transactions.
          content:
            application/json:
              schema:
                properties:
                  metadata:
                    $ref: '#/components/schemas/PageMetaDto'
                  data:
                    type: array
                    items:
                      $ref: '#/components/schemas/GetTransactionV4ResponseDto'
      security:
      - apiKey: []
      summary: List transactions
      tags:
      - Transactions
      operationId: listTransactions
components:
  schemas:
    PageMetaDto:
      type: object
      properties:
        total:
          type: number
        beforeCursor:
          type: string
        afterCursor:
          type: string
      required:
      - total
    GetTransactionV4ResponseDto:
      type: object
      properties:
        id:
          type: string
          description: The transaction ID
        orderId:
          type: string
          description: The order ID associated with this transaction
        amount:
          type: number
          description: The amount in cents (negative for debits, positive for credits).
        currency:
          description: The currency of the transaction
          allOf:
          - $ref: '#/components/schemas/Currency'
        type:
          description: The type of transaction
          allOf:
          - $ref: '#/components/schemas/MerchantLedgerType'
        postedAt:
          format: date-time
          type: string
          description: The time the transaction was posted (UTC timezone)
        adjustmentId:
          type: string
          description: The order adjustment ID associated with this transaction if applicable
        sourceTransactionIds:
          description: For payout transactions, the IDs of source transactions that were paid out
          items:
            type: array
          type: array
        feeAmount:
          type: number
          description: The fee amount associated with this order transaction (if applicable)
        feeTransactionId:
          type: string
          description: The transaction ID of the fee associated with this order transaction (if applicable)
      required:
      - id
      - amount
      - currency
      - type
      - postedAt
    Currency:
      type: string
      enum:
      - mxn
      - usd
    MerchantLedgerType:
      type: string
      enum:
      - order
      - fee
      - order_refund
      - fee_refund
      - dispute
      - payout
      - unknown
      description: The type of transaction
  securitySchemes:
    apiKey:
      type: http
      scheme: basic
      description: Basic HTTP authentication using the base64 hash of `public_key:secret_key`.
externalDocs:
  description: Slope Developer Hub
  url: https://developers.slopepay.com/