Veem wallet-controller API

Wallet Controller

Operations 2

GET /veem/v1.2/wallets Get Wallet Balance #
GET /veem/v1.2/wallets/{walletId} Get Wallet by id #

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/veem-wallet-controller-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

veem-wallet-controller-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  description: Veem REST API
  title: Veem API v1.2 attachment-controller Wallet Controller API
  version: v1.2.1
servers:
- url: //sandbox-api.veem.com
tags:
- description: Wallet Controller
  name: wallet-controller
paths:
  /veem/v1.2/wallets:
    get:
      deprecated: false
      description: Return user's wallet balance
      operationId: getFundingMethodsUsingGET_3
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CustomFundingMethodResponse'
          description: Success
        '400':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
          description: Unauthorized, the token is invalid or expired
        '401':
          description: Unauthorized, the token is invalid or expired
        '403':
          description: Forbidden, the token owner doesn't have permission to operate current API
        '404':
          description: Not Found, the resource not found
        '500':
          description: Internal Server Error, see the error code and API doc for reference
      summary: Get Wallet Balance
      tags:
      - wallet-controller
  /veem/v1.2/wallets/{walletId}:
    get:
      deprecated: false
      description: Return user's wallet by id
      operationId: getFundingMethodsUsingGET_6
      parameters:
      - description: walletId
        in: path
        name: walletId
        required: true
        schema:
          format: int64
          type: integer
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CustomFundingMethodResponse'
          description: Success
        '400':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
          description: Unauthorized, the token is invalid or expired
        '401':
          description: Unauthorized, the token is invalid or expired
        '403':
          description: Forbidden, the token owner doesn't have permission to operate current API
        '404':
          description: Not Found, the resource not found
        '500':
          description: Internal Server Error, see the error code and API doc for reference
      summary: Get Wallet by id
      tags:
      - wallet-controller
components:
  schemas:
    ErrorResponse:
      properties:
        code:
          description: The error code, different than HTTP status codes
          format: int32
          type: integer
        error:
          description: The short message
          type: string
        message:
          description: The detailed, developer friendly message
          type: string
        timestamp:
          description: The timestamp recorded when the error occurred
          type: string
      required:
      - code
      - error
      - message
      title: ErrorResponse
      type: object
    FundingMethod:
      properties:
        id:
          description: The payer's funding method id. This comes from the funding methods service.
          format: int64
          type: integer
        type:
          description: 'The payer''s funding method type. Can be one of: Bank, Card or Wallet.'
          enum:
          - Bank
          - External
          - Cheque
          - Card
          - Wallet
          - VirtualCard
          type: string
      required:
      - id
      - type
      title: FundingMethod
      type: object
    CustomFundingMethodResponse:
      properties:
        accountId:
          format: int64
          type: integer
        errorMessage:
          type: string
        fundingMethods:
          items:
            $ref: '#/components/schemas/FundingMethod'
          type: array
      title: CustomFundingMethodResponse
      type: object