Skip to content

Latest commit

 

History

History
307 lines (242 loc) · 11.4 KB

README.md

File metadata and controls

307 lines (242 loc) · 11.4 KB

Pine API

GitHub Release Build Status Coverage Status

REST API for Pine to interact with the bitcoin blockchain and network.

Getting started

  1. Install btcd

  2. Start the btcd node with transaction and address indexing turned on:

    $ btcd --txindex --addrindex
    
  3. Clone this repo:

    $ git clone https://github.com/blockfirm/pine-api.git
    $ cd pine-api
    
  4. Install dependencies:

    $ npm install
    
  5. Open src/config.js and enter your btcd RPC username and password

  6. Start the API server in development mode:

    $ npm run dev
    
  7. Or build it and run in production mode:

    $ npm run build
    $ npm start
    

API

Endpoints

Endpoints for retrieving and submitting information to the bitcoin blockchain and network.

Method Endpoint Description
GET /v1/info Get information about the server
GET /v1/bitcoin/transactions Get transactions by address
POST /v1/bitcoin/transactions Broadcast a signed transaction
GET /v1/bitcoin/transactions/:txid Get a specific transaction by its ID
GET /v1/bitcoin/fees/estimate Get the current estimated transaction fee rate
GET /v1/bitcoin/fiatrates Not implemented yet
POST /v1/bitcoin/pushnotifications Not implemented yet
DELETE /v1/bitcoin/pushnotifications Not implemented yet

GET /v1/info

Returns information about the server.

Returns

{
  "isConnected": true, (boolean) Whether or not the server is connected to a bitcoin node
  "network": "testnet", (string) "mainnet" or "testnet"
  "blocks": n (integer) The number of blocks processed
}

GET /v1/bitcoin/transactions

Scans the bitcoin blockchain for transactions matching a set of addresses.

Query String Parameters

Name Type Description
addresses string Comma-separated list of addresses to get transactions for. Maximum 20 addresses are allowed per request.
page integer What page to get transactions for. The number of transactions depends on the page_size parameter.
page_size integer Number of transactions to return per address for each page. Must be between 1 and 100 (defaults to 100).
reverse boolean 1 specifies that the transactions should be returned in reverse chronological order. Defaults to 0 (false).

Returns

Returns the transactions together with extra vin data and other useful information about each transaction, e.g. whether it is pending or not. Here's an example return copied from https://github.com/btcsuite/btcd/blob/master/docs/json_rpc_api.md#searchrawtransactions:

[
    {
        "hex": "data", (string) hex-encoded transaction
        "txid": "hash", (string) the hash of the transaction
        "version": n, (numeric) the transaction version
        "locktime": n, (numeric) the transaction lock time
        "vin": [ the transaction inputs as json objects
        For coinbase transactions:
            {
                "coinbase": "data", (string) the hex-encoded bytes of the signature script
                "txinwitness": “data", (string) the witness stack for the input
                "sequence": n, (numeric) the script sequence number
            }
        For non-coinbase transactions:
            {
                "txid": "hash", (string) the hash of the origin transaction
                "vout": n, (numeric) the index of the output being redeemed from the origin transaction
                "scriptSig": { the signature script used to redeem the origin transaction
                    "asm": "asm", (string) disassembly of the script
                    "hex": "data", (string) hex-encoded bytes of the script
                }
                "prevOut": { data from the origin transaction output with index vout
                    "addresses": ["value",...], (array of string) previous output addresses
                    "value": n.nnn, (numeric) previous output value
                }
                "txinwitness": “data", (string) the witness stack for the input
                "sequence": n, (numeric) the script sequence number
            }, ...
        ],
        "vout": [ the transaction outputs as json objects
            {
                "value": n, (numeric) the value in BTC
                "n": n, (numeric) the index of this transaction output
                "scriptPubKey": { the public key script used to pay coins
                    "asm": "asm", (string) disassembly of the script
                    "hex": "data", (string) hex-encoded bytes of the script
                    "reqSigs": n, (numeric) the number of required signatures
                    "type": "scripttype" (string) the type of the script (e.g. 'pubkeyhash')
                    "addresses": [ the bitcoin addresses associated with this output
                        "address", (string) the bitcoin address
                        ...
                    ]
                }
            }, ...
        ],
        "blockhash": "hash" hash of the block the transaction is part of
        "confirmations": n, number of numeric confirmations of block
        "time": t, transaction time in seconds since the epoch
        "blocktime": t, block time in seconds since the epoch
    }, ...
]

POST /v1/bitcoin/transactions

Broadcasts a transaction to the Bitcoin network. The transaction must be serialized in raw format (https://bitcoin.org/en/developer-reference#raw-transaction-format).

Body

Encoded as JSON.

Name Type Description
transaction string Serialized and signed transaction in raw format.

Returns

{
  "txid": "data" (string) The hash of the transaction
}

GET /v1/bitcoin/transactions/:txid

Returns a specific transaction based on its id.

Parameters

Name Type Description
txid string Transaction hash for the transaction to get.

Returns

Returns the transaction together with extra vin data and other useful information, e.g. whether it is pending or not. Here's an example return copied from https://github.com/btcsuite/btcd/blob/master/docs/json_rpc_api.md#getrawtransaction:

{
    "hex": "data", (string) hex-encoded transaction
    "txid": "hash", (string) the hash of the transaction
    "version": n, (numeric) the transaction version
    "locktime": n, (numeric) the transaction lock time
    "vin": [ the transaction inputs as json objects
    For coinbase transactions:
        {
            "coinbase": "data", (string) the hex-encoded bytes of the signature script
            "txinwitness": “data", (string) the witness stack for the input
            "sequence": n, (numeric) the script sequence number
        }
    For non-coinbase transactions:
        {
            "txid": "hash", (string) the hash of the origin transaction
            "vout": n, (numeric) the index of the output being redeemed from the origin transaction
            "scriptSig": { the signature script used to redeem the origin transaction
                "asm": "asm", (string) disassembly of the script
                "hex": "data", (string) hex-encoded bytes of the script
            }
            "prevOut": { data from the origin transaction output with index vout
                "addresses": ["value",...], (array of string) previous output addresses
                "value": n.nnn, (numeric) previous output value
            }
            "txinwitness": “data", (string) the witness stack for the input
            "sequence": n, (numeric) the script sequence number
        }, ...
    ],
    "vout": [ the transaction outputs as json objects
        {
            "value": n, (numeric) the value in BTC
            "n": n, (numeric) the index of this transaction output
            "scriptPubKey": { the public key script used to pay coins
                "asm": "asm", (string) disassembly of the script
                "hex": "data", (string) hex-encoded bytes of the script
                "reqSigs": n, (numeric) the number of required signatures
                "type": "scripttype" (string) the type of the script (e.g. 'pubkeyhash')
                "addresses": [ the bitcoin addresses associated with this output
                    "address", (string) the bitcoin address
                    ...
                ]
            }
        }, ...
    ],
    "blockhash": "hash" hash of the block the transaction is part of
    "confirmations": n, number of numeric confirmations of block
    "time": t, transaction time in seconds since the epoch
    "blocktime": t, block time in seconds since the epoch
}

GET /v1/bitcoin/fees/estimate

Estimates the transaction fee to be confirmed in the next number of blocks specified by numberOfBlocks.

Query String Parameters

Name Type Description
numberOfBlocks integer Number of blocks the transaction can wait until being confirmed. Defaults to 1.

Returns

{
  "satoshisPerByte": 4.7 (number) The estimated fee per byte in satoshis
}

GET /v1/bitcoin/fiatrates

Not yet implemented. Gets the current exchange rates for bitcoin in different fiat currencies.

Query String Parameters

Name Type Description
currencies string Comma-separated list of ISO 4217 codes.

Returns

Array of fiat exchange rates for the specified currencies.

POST /v1/bitcoin/pushnotifications

Not yet implemented. An endpoint for subscribing to push notifications when new payments are received or confirmed.

DELETE /v1/bitcoin/pushnotifications

Not yet implemented. An endpoint for unsubscribing to push notifications.

Error handling

Errors are returned as JSON in the following format:

{
    "error": "<error message>"
}

Use with Bitcoin testnet

During development and testing it is recommended to use the testnet network. By doing so you can use testnet coins and don't risk losing any real money. Running a testnet node is also much lighter than running a mainnet node.

  1. Run btcd with testnet

    $ btcd --txindex --addrindex --testnet

  2. Configure the API server to use testnet

    Open src/config.js and set network to testnet instead of mainnet.

  3. Configure the Pine app to use testnet

    You need to configure the app to use testnet and point it to your testnet API. This requires you to build and run the app yourself. Follow the instructions in the Pine app repo.

Contributing

Want to help us making Pine better? Great, but first read the CONTRIBUTING.md file for instructions.

Licensing

Pine is licensed under the Apache License, Version 2.0. See LICENSE for full license text.