MNEE API

Welcome to the MNEE API Reference! This section provides detailed information about the available methods, parameters, and responses for interacting directly with the MNEE API. The API is designed to be intuitive and easy to use, allowing you to manage and take full control of your integration.

Get config

get
/v1/config

Get MNEE configuration and fee structure

Authorizations
auth_tokenstringRequired
Responses
200

OK

application/json
get
/v1/config

Get all MNEE transactions

get
/v1/sync

Gather a list of all MNEE transactions

Authorizations
auth_tokenstringRequired
Query parameters
fromintegerOptional

Min score

limitintegerOptional

Maximum number of transactions to return

Default: 1000
Responses
200

Signed transactions

application/json
get
/v1/sync

Get transactions for specific addresses

post
/v1/sync

Gather a list of all MNEE transactions for a batch of addresses

Authorizations
auth_tokenstringRequired
Query parameters
fromintegerOptional
limitintegerOptional

Maximum number of transactions to return per address (defaults to 0, which returns all transactions)

Default: 0
orderstringOptional

Sync Order

Bodystring[]
string[]Optional
Responses
200

Signed transactions

application/json
post
/v1/sync

Submit a partially-signed transfer transaction

post
/v1/transfer
Authorizations
auth_tokenstringRequired
Body
rawtxstringOptionalExample: base64 string
Responses
200

Signed transaction

application/json
post
/v1/transfer

Transfer Mnee tokens

post
/v2/transfer

Validates and transfers mnee transactions. Returns a ticket ID for tracking the transaction.

Authorizations
auth_tokenstringRequired
Body
rawtxstringOptionalExample: base64 string
Responses
200

Transfer submitted successfully. Returns ticket ID for tracking.

text/plain
Responsestring

Ticket ID for tracking the transfer transaction

Example: a1b2c3d4-e5f6-7890-abcd-ef1234567890
post
/v2/transfer

Get Ticket

get
/v2/ticket

Returns Ticket By Ticket ID

Authorizations
auth_tokenstringRequired
Query parameters
ticketIDstringRequired

Ticket ID

Responses
200

Ticket response

application/json
get
/v2/ticket

Retrieve UTXOs for a batch of addresses

post
/v1/utxos
Authorizations
auth_tokenstringRequired
Bodystring[]
string[]Optional
Responses
200

UTXOs

application/json
post
/v1/utxos

Get Utxos by addresses

post
/v2/utxos

Returns the array of unspent utxos

Authorizations
auth_tokenstringRequired
Query parameters
pagestringOptional

Default: 1

Default: 1
sizestringOptional

Default: 10

Default: 10
orderstringOptional

Sync Order

Bodystring[]
string[]Optional

Addresses to lookup for utxos

Responses
200

OK

application/json
post
/v2/utxos

Fetch balances for given addresses

post
/v2/balance

Accepts a list of addresses and returns their balances.

Authorizations
auth_tokenstringRequired
Bodystring[]
string[]Optional

List of addresses

Responses
200

Balances result

application/json
post
/v2/balance

Retrieve transaction

get
/v1/tx/{txid}
Authorizations
auth_tokenstringRequired
Path parameters
txidstringRequired
Responses
200

Transaction data

application/json
get
/v1/tx/{txid}

Last updated