MNEE
  1. Transactions
MNEE
  • Balance
    • Fetch balances for given addresses
      POST
  • Config
    • Get System Config
      GET
  • Transactions
    • Sync All Transactions
      GET
    • Get Transactions for specific Addresses
      POST
    • Transfer Mnee tokens
      POST
    • Get Transaction Hex by txID
      GET
    • Get All Utxos by addresses
      POST
    • Transfer Mnee tokens
      POST
    • Get Utxos by addresses
      POST
  • Ticket
    • Get Ticket
      GET
  • Schemas
    • Schemas
      • models.BalanceData
      • models.BsvData
      • models.CosignData
      • models.CosignerRequest
      • models.Data
      • models.Fee
      • models.MneeTxo
      • models.SyncTransaction
      • models.SystemConfig
      • models.Ticket
    • RequestBodies
      • Addresses
      • Addresses2
  1. Transactions

Get All Utxos by addresses

POST
/v1/utxos
Returns the array of all unspent utxos

Request

Query Params

Body Params application/jsonRequired

Examples

Responses

🟢200OK
application/json
OK
Body

🟠400Bad Request
🔴500Server Error
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://proxy-api.mnee.net/v1/utxos?auth_token=92982ec1c0975f31979da515d46bae9f' \
--header 'Content-Type: application/json' \
--data-raw '[
    "string"
]'
Response Response Example
200 - Example 1
[
    {
        "data": {
            "bsv21": {
                "amt": 200,
                "dec": 5,
                "icon": "b0f60d7c328db3f4d9fda09c56e8e0727f41973f031e83053a8fc20706b38852_0",
                "id": "b0f60d7c328db3f4d9fda09c56e8e0727f41973f031e83053a8fc20706b38852_0",
                "op": "transfer",
                "sym": "MNEE"
            },
            "cosign": {
                "address": "string",
                "cosigner": "string"
            }
        },
        "height": 908669,
        "idx": 1113,
        "outpoint": "eebba7183c17706d6f92bac731b6f99f1c3183c38560ae99e42ada4afa9a88c1_0",
        "owners": [
            "string"
        ],
        "satoshis": 1,
        "score": 908669000001113,
        "script": "string",
        "senders": [
            "string"
        ],
        "txid": "eebba7183c17706d6f92bac731b6f99f1c3183c38560ae99e42ada4afa9a88c1",
        "vout": 0
    }
]
Modified at 2025-08-27 09:27:35
Previous
Get Transaction Hex by txID
Next
Transfer Mnee tokens
Built with