PagSeguro / PagBank Connect API

The Connect API from PagSeguro / PagBank — 6 operation(s) for connect.

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-connect-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-connect-api-openapi.yml Raw ↑
openapi: 3.1.0
info:
  title: PagBank / PagSeguro REST Accounts Connect 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: Connect
paths:
  /applications:
    post:
      tags:
      - Connect
      summary: Create a Connect Application
      responses:
        '201':
          description: Application created
  /applications/{id}:
    parameters:
    - name: id
      in: path
      required: true
      schema:
        type: string
    get:
      tags:
      - Connect
      summary: Get a Connect Application
      responses:
        '200':
          description: Application
  /authorization:
    get:
      tags:
      - Connect
      summary: Request Authorization (Connect)
      responses:
        '200':
          description: Authorization URL / status
  /tokens:
    post:
      tags:
      - Connect
      summary: Issue an Access Token
      responses:
        '201':
          description: Token issued
  /tokens/refresh:
    post:
      tags:
      - Connect
      summary: Refresh an Access Token
      responses:
        '200':
          description: Token refreshed
  /tokens/revoke:
    post:
      tags:
      - Connect
      summary: Revoke an Access Token
      responses:
        '200':
          description: Token revoked
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.

        '