Efí Pay (Gerencianet) Authorization API

The Authorization API from Efí Pay (Gerencianet) — 2 operation(s) for authorization.

Operations 2

POST /authorize Issue Access Token #
POST /oauth/token Issue Contas Access Token #

Documentation

Specifications

Schemas & Data

Other Resources

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/gerencianet-authorization-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

gerencianet-authorization-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Gerencianet Authorization API
  license:
    name: Proprietary
  version: '1.0'
  description: 'Operations tagged Authorization across 6 of this provider''s published API definitions: efi-cobrancas-openapi.yml, efi-contas-openapi.yml, efi-extratos-openapi.yml, efi-openfinance-openapi.yml, efi-pagamentos-openapi.yml, efi-pix-openapi.yml. Each path carries the servers of the definition it was published in.'
servers:
- url: https://cobrancas.api.efipay.com.br/v1
  description: Production
- url: https://cobrancas-h.api.efipay.com.br/v1
  description: Homologation (Sandbox)
- url: https://abrircontas.api.efipay.com.br/v1
  description: Production
- url: https://abrircontas-h.api.efipay.com.br/v1
  description: Homologation (Sandbox)
- url: https://extratos.api.efipay.com.br/v1
  description: Production
- url: https://extratos-h.api.efipay.com.br/v1
  description: Homologation (Sandbox)
- url: https://openfinance.api.efipay.com.br/v1
  description: Production
- url: https://openfinance-h.api.efipay.com.br/v1
  description: Homologation (Sandbox)
- url: https://pagarcontas.api.efipay.com.br/v1
  description: Production
- url: https://pagarcontas-h.api.efipay.com.br/v1
  description: Homologation (Sandbox)
- url: https://pix.api.efipay.com.br
  description: Production
- url: https://pix-h.api.efipay.com.br
  description: Homologation (Sandbox)
tags:
- name: Authorization
paths:
  /authorize:
    post:
      tags:
      - Authorization
      summary: Issue Access Token
      description: Exchange client_id and client_secret (HTTP Basic) for an OAuth2 access token used to authenticate subsequent Cobranças API calls.
      operationId: authorize
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                grant_type:
                  type: string
                  enum:
                  - client_credentials
      responses:
        '200':
          description: Access token issued
      security:
      - oauth2ClientCredentials: []
    servers:
    - url: https://cobrancas.api.efipay.com.br/v1
      description: Production
    - url: https://cobrancas-h.api.efipay.com.br/v1
      description: Homologation (Sandbox)
  /oauth/token:
    post:
      tags:
      - Authorization
      summary: Issue Contas Access Token
      operationId: contasAuthorize
      responses:
        '200':
          description: Token
      security:
      - oauth2Contas: []
    servers:
    - url: https://abrircontas.api.efipay.com.br/v1
      description: Production
    - url: https://abrircontas-h.api.efipay.com.br/v1
      description: Homologation (Sandbox)
components:
  securitySchemes:
    oauth2ClientCredentials:
      type: oauth2
      flows:
        clientCredentials:
          tokenUrl: https://cobrancas.api.efipay.com.br/v1/authorize
          scopes: {}
    oauth2Contas:
      type: oauth2
      flows:
        clientCredentials:
          tokenUrl: https://abrircontas.api.efipay.com.br/v1/oauth/token
          scopes: {}
    oauth2Extratos:
      type: oauth2
      flows:
        clientCredentials:
          tokenUrl: https://extratos.api.efipay.com.br/v1/oauth/token
          scopes: {}
    oauth2OpenFinance:
      type: oauth2
      flows:
        clientCredentials:
          tokenUrl: https://openfinance.api.efipay.com.br/v1/oauth/token
          scopes:
            openfinance.payments.read: Read payment status
            openfinance.payments.write: Initiate payments
    oauth2Pagamentos:
      type: oauth2
      flows:
        clientCredentials:
          tokenUrl: https://pagarcontas.api.efipay.com.br/v1/oauth/token
          scopes: {}
    oauth2Pix:
      type: oauth2
      flows:
        clientCredentials:
          tokenUrl: https://pix.api.efipay.com.br/oauth/token
          scopes:
            cob.read: Read immediate charges
            cob.write: Create/update immediate charges
            cobv.read: Read due charges
            cobv.write: Create/update due charges
            pix.read: Read received Pix
            pix.write: Manage devolutions
            pix.send: Send Pix
            webhook.read: Read webhook config
            webhook.write: Configure webhooks
            gn.balance.read: Read account balance
x-refined-from:
- efi-cobrancas-openapi.yml
- efi-contas-openapi.yml
- efi-extratos-openapi.yml
- efi-openfinance-openapi.yml
- efi-pagamentos-openapi.yml
- efi-pix-openapi.yml