Public
Documentation Settings

Blockchain

We are excited to introduce our API, designed with Rosetta standards to ensure a seamless and efficient integration process for developers. By adhering to Rosetta specifications, our API provides a standardized framework for interacting with blockchain data, enhancing interoperability, security, and reliability. This enables developers to quickly and easily integrate our blockchain solutions into their applications, leveraging a comprehensive set of tools and guidelines compliant with Rosetta API standards.

account

Provides the ability to access balances in a standard format.

POST/balance

https://api.motors-coin.org/account/balance
Bodyraw (json)
json
{
    "network_identifier": {
        "blockchain": "Motorscoin",
        "network": "Testnet"
    },
    "account_identifier": {
        "address": "4336LCBodj4QrmDtYBUcUaXym2DC3kax3wmw3GQBzcEZyaKwfWdGExLDWW5tdULX9XWpk2nrxFQ4Up3fYGSf4Bhz"
    }
}
Example Request
curl
curl --location 'https://api.motors-coin.org/account/balance' \
--data '{
    "network_identifier": {
        "blockchain": "Motorscoin",
        "network": "Testnet"
    },
    "account_identifier": {
        "address": "4336LCBodj4QrmDtYBUcUaXym2DC3kax3wmw3GQBzcEZyaKwfWdGExLDWW5tdULX9XWpk2nrxFQ4Up3fYGSf4Bhz"
    }
}'
Example Response
No response body
This request doesn't return any response body
No response headers
This request doesn't return any response headers

POST/coins

https://api.motors-coin.org/account/coins
Bodyraw (json)
json
{
    "network_identifier": {
        "blockchain": "Motorscoin",
        "network": "Testnet"
    },
    "account_identifier": {
        "address": "4336LCBodj4QrmDtYBUcUaXym2DC3kax3wmw3GQBzcEZyaKwfWdGExLDWW5tdULX9XWpk2nrxFQ4Up3fYGSf4Bhz"
    },
    "include_mempool": true
}
Example Request
curl
curl --location 'https://api.motors-coin.org/account/coins' \
--data '{
    "network_identifier": {
        "blockchain": "Motorscoin",
        "network": "Testnet"
    },
    "account_identifier": {
        "address": "4336LCBodj4QrmDtYBUcUaXym2DC3kax3wmw3GQBzcEZyaKwfWdGExLDWW5tdULX9XWpk2nrxFQ4Up3fYGSf4Bhz"
    },
    "include_mempool": true
}'
Example Response
No response body
This request doesn't return any response body
No response headers
This request doesn't return any response headers

block

Provides the ability to access blocks and transactions in a standard format.