GET
/
transactions
curl --request GET \
  --url https://api.coinfi.zone/transactions \
  --header 'Authorization: Bearer <token>'
{
  "transactions": [
    {
      "from": "addr1",
      "to": "addr2",
      "amount": "100",
      "txHash": "abc123"
    }
  ]
}

This endpoint retrieves a list of transactions from the CoinFi blockchain.

Request Details

  • URL: https://api.coinfi.zone/transactions
  • Method: GET
  • Query Parameter: limit (optional) – defines the maximum number of transactions to return.

Example Request

curl -X GET "https://api.coinfi.zone/transactions?limit=10" -H "Accept: application/json"

The response will include a JSON object that contains an array of transaction objects.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

limit
integer

The maximum number of transactions to return. Default is 10 if not specified.

Response

200 - application/json
A list of transactions.
transactions
object[]