# FNCY Chain API

## <mark style="color:purple;">FNCY Chain APIs</mark>

<table data-view="cards"><thead><tr><th></th><th></th></tr></thead><tbody><tr><td><a href="fncy-chain-api/wallet-api"><strong>Wallet API</strong></a></td><td>Wallet Service API </td></tr><tr><td><a href="fncy-chain-api/transaction-api"><strong>Transaction API</strong></a></td><td>Transaction Service API</td></tr><tr><td><a href="fncy-chain-api/blockchain-api"><strong>Block-Chain API</strong></a></td><td>Block Service API</td></tr></tbody></table>

### Base Response&#x20;

```json
{
    "apiVersion": api version
    "status": {
        "code": http status code
        "message": http status message
    },
    "data": {
        "requested result value"
    }
}
```

### List Response

```json
{
    "apiVersion": api version,
    "status": {
        "code": http status code,
        "message": http status message
    },
    "data": {
        "paging": {
            "pageNo": 1,
            "pageSize": 20,
            "totalCount": total count of result,
            "hasMore": true
        },
        "items": [
            "requested result list of value"
        }
    }
}
```
