PagSeguro / PagBank Subscribers API

The Subscribers API from PagSeguro / PagBank — 3 operation(s) for subscribers.

Operations 5

POST /subscribers Create a Subscriber
GET /subscribers List Subscribers
GET /subscribers/{id} Get a Subscriber
PUT /subscribers/{id} Update a Subscriber
PUT /subscribers/{id}/payment-method Update Subscriber Payment Method

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-subscribers-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

pagseguro-subscribers-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: PagBank / PagSeguro REST Accounts Subscribers 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: Subscribers
paths:
  /subscribers:
    post:
      tags:
      - Subscribers
      summary: Create a Subscriber
      responses:
        '201':
          description: Subscriber created
    get:
      tags:
      - Subscribers
      summary: List Subscribers
      responses:
        '200':
          description: Subscribers list
  /subscribers/{id}:
    parameters:
    - name: id
      in: path
      required: true
      schema:
        type: string
    get:
      tags:
      - Subscribers
      summary: Get a Subscriber
      responses:
        '200':
          description: Subscriber
    put:
      tags:
      - Subscribers
      summary: Update a Subscriber
      responses:
        '200':
          description: Subscriber updated
  /subscribers/{id}/payment-method:
    parameters:
    - name: id
      in: path
      required: true
      schema:
        type: string
    put:
      tags:
      - Subscribers
      summary: Update Subscriber Payment Method
      responses:
        '200':
          description: Payment method updated
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.

        '