Coins.ph Utility API

Account balance, transfers, and utility endpoints

Operations 3

GET /openapi/v1/account Account Balance #
POST /openapi/transfer/v3/transfers P2P Transfers #
GET /openapi/v1/user/ip Get User IP #

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/coinsph-utility-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

coinsph-utility-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: TRADING Account Utility API
  version: 1.0.0
  description: API reference for Account management — Coins.ph
servers:
- url: https://api.pro.coins.ph
  description: Production
- url: https://api.9001.pl-qa.coinsxyz.me
  description: Sandbox
tags:
- name: Utility
  description: Account balance, transfers, and utility endpoints
paths:
  /openapi/v1/account:
    get:
      tags:
      - Utility
      summary: Account Balance
      description: Obtain the current balance of the account.
      operationId: getAccountBalance
      parameters:
      - name: recvWindow
        in: query
        required: false
        schema:
          type: integer
          format: int64
        description: Validity duration of the request in milliseconds. Default 5000, max 60000.
      - name: timestamp
        in: query
        required: true
        schema:
          type: integer
          format: int64
        description: Unix timestamp indicating when the request was made.
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AccountBalanceResponse'
  /openapi/transfer/v3/transfers:
    post:
      tags:
      - Utility
      summary: P2P Transfers
      description: Conduct transfer of funds between two Coins.ph accounts.
      operationId: p2pTransfer
      parameters:
      - name: client_transfer_id
        in: query
        required: false
        schema:
          type: string
        description: Assigned by the partner.
      - name: account
        in: query
        required: true
        schema:
          type: string
        description: The currency to be transferred.
        example: PHP
      - name: target_address
        in: query
        required: true
        schema:
          type: string
        description: The registered phone number or email of the recipient.
        example: +63 9686490252
      - name: amount
        in: query
        required: true
        schema:
          type: number
          format: decimal
        description: The amount to be transferred.
        example: 200.99
      - name: recvWindow
        in: query
        required: false
        schema:
          type: integer
          format: int64
      - name: timestamp
        in: query
        required: true
        schema:
          type: integer
          format: int64
      - name: message
        in: query
        required: false
        schema:
          type: string
          maxLength: 99
        description: Message to be sent to the recipient account.
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                type: object
                properties:
                  transfer:
                    $ref: '#/components/schemas/TransferResponse'
  /openapi/v1/user/ip:
    get:
      tags:
      - Utility
      summary: Get User IP
      description: Returns the current IP address.
      operationId: getUserIP
      security: []
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                type: object
                properties:
                  ip:
                    type: string
                    example: 35.75.185.122
      parameters:
      - name: recvWindow
        in: query
        required: false
        schema:
          type: integer
          format: int64
        description: Validity duration of the request in milliseconds after the timestamp.
components:
  schemas:
    LimitPeriod:
      type: object
      properties:
        cashInLimit:
          type: string
        cashInRemaining:
          type: string
        cashOutLimit:
          type: string
        cashOutRemaining:
          type: string
        totalWithdrawLimit:
          type: string
        totalWithdrawRemaining:
          type: string
    TransferResponse:
      type: object
      properties:
        id:
          type: string
        status:
          type: string
          enum:
          - success
        account:
          type: string
        amount:
          type: string
        exchange:
          type:
          - string
          - 'null'
          deprecated: true
        payment:
          type: string
          deprecated: true
        message:
          type: string
        errorMessage:
          type:
          - string
          - 'null'
        target_address:
          type: string
        client_transfer_id:
          type: string
    AccountBalanceResponse:
      type: object
      properties:
        canTrade:
          type: boolean
        canDeposit:
          type: boolean
        canWithdraw:
          type: boolean
        accountType:
          type: string
          example: SPOT
        updateTime:
          type: integer
          format: int64
        balances:
          type: array
          items:
            type: object
            properties:
              asset:
                type: string
              free:
                type: string
              locked:
                type: string
        token:
          type: string
          description: Denomination for limits.
          example: PHP
        daily:
          $ref: '#/components/schemas/LimitPeriod'
        monthly:
          $ref: '#/components/schemas/LimitPeriod'
        annually:
          $ref: '#/components/schemas/LimitPeriod'
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-COINS-APIKEY
x-readme:
  proxy-enabled: false