PagSeguro / PagBank Charges API

The Charges API from PagSeguro / PagBank — 4 operation(s) for charges.

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/pagseguro-charges-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

pagseguro-charges-api-openapi.yml Raw ↑
openapi: 3.1.0
info:
  title: PagBank / PagSeguro REST Accounts Charges API
  description: "PagBank (PagSeguro) REST API surface covering Orders, Charges, Public\nKeys, Checkout, Recurring (plans / subscribers / subscriptions / coupons\n/ invoices), and Connect / OAuth. All requests authenticate with a Bearer\naccess token over HTTPS; responses are JSON.\n\nBase URLs:\n  - Production: https://api.pagseguro.com\n  - Sandbox:    https://sandbox.api.pagseguro.com\n"
  version: v1
  contact:
    name: PagBank Developers
    url: https://developer.pagbank.com.br/
servers:
- url: https://api.pagseguro.com
  description: PagBank production API
- url: https://sandbox.api.pagseguro.com
  description: PagBank sandbox API
security:
- bearerAuth: []
tags:
- name: Charges
paths:
  /orders/{order_id}/charges:
    parameters:
    - name: order_id
      in: path
      required: true
      schema:
        type: string
    post:
      tags:
      - Charges
      summary: Charge an Order
      responses:
        '201':
          description: Charge created
  /orders/{order_id}/charges/{charge_id}/capture:
    parameters:
    - name: order_id
      in: path
      required: true
      schema:
        type: string
    - name: charge_id
      in: path
      required: true
      schema:
        type: string
    post:
      tags:
      - Charges
      summary: Capture a Charge
      responses:
        '200':
          description: Charge captured
  /orders/{order_id}/charges/{charge_id}/cancel:
    parameters:
    - name: order_id
      in: path
      required: true
      schema:
        type: string
    - name: charge_id
      in: path
      required: true
      schema:
        type: string
    post:
      tags:
      - Charges
      summary: Cancel a Charge
      responses:
        '200':
          description: Charge cancelled
  /charges/{charge_id}/fees:
    parameters:
    - name: charge_id
      in: path
      required: true
      schema:
        type: string
    get:
      tags:
      - Charges
      summary: Get Charge Fees
      responses:
        '200':
          description: Fees
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: access_token
      description: 'PagBank access token issued via the developer portal (or via the

        Connect flow). Send as "Authorization: Bearer {ACCESS_TOKEN}". All

        requests must be HTTPS.

        '