Fipto - OpenAPI 3.0
1.2.2

This is a REST API specifications based on OpenAPI 3.0 for Fipto solution.

This is the documentation for version 1.2.2 of the API. Last update on Aug 30, 2023.

Base URL
https://api.fipto.app

Get wallets

GET /companies/{company_id}/wallets

Retrieve the list of all wallets in your company.

Path parameters

  • company_id string Required

    The Company ID given by Fipto.

    Format should match the following pattern: [0-9a-fA-F]{8}\b-[0-9a-fA-F]{4}\b-[0-9a-fA-F]{4}\b-[0-9a-fA-F]{4}\b-[0-9a-fA-F]{12}.

Query parameters

  • The page number retrieved in the paginated results. The default value is 1.

  • The number of items to include in each page of the paginated results. The default value is 100. The pagination is removed when the value is 0 (unlimited number of elements are returned).

  • sort string

    The sort field used to filter data.

    Values are created_at, name, asset_code, or value. Default value is created_at.

  • Specifies the asset used to value the resources retrieved by the endpoint.

    Values are EUR or USD. Default value is EUR.

  • value string

    Value of the wallet.

  • assets array[string]

    Filters the wallets returned based on the specified assets. All assets will be returned by default.

Responses

  • 200

    Retrieve the list of wallets

    Hide response attributes Show response attributes object
    • meta object Required
      Hide meta attributes Show meta attributes
      • request_id string Required

        Unique identifier generated by the server.

        Format should match the following pattern: [0-9a-fA-F]{8}\b-[0-9a-fA-F]{4}\b-[0-9a-fA-F]{4}\b-[0-9a-fA-F]{4}\b-[0-9a-fA-F]{12}.

      • Information about the parameters in the request. All query string parameters provided (or implicit/with default value) will be returned

    • data array[object]

      Fields required on all objects.

      Hide data attributes Show data attributes
      • type string Required

        Default value is wallet.

      • attributes object Required
        Hide attributes attributes Show attributes attributes
        • name string Required

          The name given to the wallet.

        • asset string Required

          The symbol/ticker of the crypto asset.

          Format should match the following pattern: ([A-Z_]){3,}.

        • subtype string

          Subtype of a wallet

          Values are primary or fee.

        • balances object Required
          Hide balances attributes Show balances attributes
          • available string Required

            The current available balance of assets for the wallet.

          • forecasted string Required

            The forecasted balance of assets for the wallet.

        • value string | null Required

          Amount expressed in a currency.

          Format should match the following pattern: ^-?\d*(\.\d+)?$.

        • Specifies the asset used to value the wallet balance.

      • id string Required

        Unique identifier generated by Fipto product on base62 format.

        Format should match the following pattern: [0-9a-zA-Z]{22}.

GET /companies/{company_id}/wallets
curl \
 -X GET https://api.fipto.app/companies/9de0691c-bc8d-409b-8f40-75d4f45db2f3/wallets
Response examples (200)
{
  "meta": {
    "request_id": "string",
    "query_parameters": {}
  },
  "data": [
    {
      "type": "wallet",
      "attributes": {
        "name": "string",
        "asset": "BTC",
        "subtype": "primary",
        "balances": {
          "available": "string",
          "forecasted": "string"
        },
        "value": "1000",
        "valuation_asset": "string"
      },
      "id": "string"
    }
  ]
}