Home Page

Doggy Market Balances API Documentation

The Doggy Market Balances API provides access to the balances associated with a given wallet address on the DogeChain platform. It returns a list of balances for various tokens along with their transferable and available amounts.

GET https://api.bbit.site/balances/balances/[wallet_address]

Returns the balances associated with the specified wallet address.

Request

Method: GET
Endpoint: https://api.bbit.site/balances/balances/[wallet_address]
Headers:
    Content-Type: application/json
        

Response

The API response will be a JSON array containing objects with the following attributes:

[
    {
        "tick": "fiwb",
        "transferable": "0",
        "available": "5450"
    },
    {
        "tick": "pokr",
        "transferable": "0",
        "available": "2000"
    },
    ...
]
        

Error Responses

Rate Limiting

There are currently no rate limits set for this beta API. In the near future, access will be free if you own BBIT tokens.

Authentication

No authentication is required to access this API.

Notes

Examples

curl -X GET https://api.bbit.site/balances/[wallet_address]

fetch('https://api.bbit.site/balances/[wallet_address]')
    .then(response => response.json())
    .then(data => console.log(data))
    .catch(error => console.error('Error:', error));