Brevo Wallet API

The wallet API from Brevo — 1 operation(s) for wallet.

Operations 1

GET /wallet/passes/{passId}/installUrl/{contactId} Get a pass installation URL for a contact #

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/brevo-wallet-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

brevo-wallet-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Wallet API
  version: 1.0.0
servers:
- url: https://api.brevo.com/v3
  description: https://api.brevo.com/v3
tags:
- name: wallet
paths:
  /wallet/passes/{passId}/installUrl/{contactId}:
    get:
      operationId: getWalletPassInstallUrl
      summary: Get a pass installation URL for a contact
      description: Generate a wallet installation URL for a specific contact. The returned URL points to the pass installation page and encodes the pass, contact and organization identifiers as an encrypted token, so it can be shared with the contact (email, SMS, QR code, ...) to add the pass to their Apple Wallet or Google Wallet.
      tags:
      - wallet
      parameters:
      - name: passId
        in: path
        description: Pass ID. The unique identifier of the wallet pass for which to generate an installation URL.
        required: true
        schema:
          type: string
          format: uuid
      - name: contactId
        in: path
        description: The Brevo contact ID the installation URL is generated for.
        required: true
        schema:
          type: integer
          format: int64
      - name: api-key
        in: header
        description: The API key should be passed in the request headers as `api-key` for authentication.
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Installation URL generated successfully.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/walletPassInstallUrl'
        '400':
          description: Invalid `passId` (must be a well-formed UUID) or `contactId` (must be a positive integer).
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/errorModel'
        '401':
          description: Request Authentication Failed.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/errorModel'
        '403':
          description: The pass does not belong to the authenticated account.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/errorModel'
        '404':
          description: Pass not found.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/errorModel'
        '422':
          description: Wallet is not enabled for this account. The response `code` is `WALLET_NOT_ENABLED`.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/errorModel'
        '500':
          description: Internal error occurred.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/errorModel'
components:
  schemas:
    walletPassInstallUrl:
      type: object
      properties:
        url:
          type: string
          format: uri
          description: The wallet installation URL for the contact. Opening it lets the contact add the pass to their Apple Wallet or Google Wallet.
      required:
      - url
      title: walletPassInstallUrl
    errorModel:
      type: object
      properties:
        code:
          type: string
          description: Error code displayed in case of a failure
        message:
          type: string
          description: Readable message associated to the failure
      required:
      - message
      title: errorModel
  securitySchemes:
    api-key:
      type: apiKey
      in: header
      name: api-key
      description: The API key should be passed in the request headers as `api-key` for authentication.