> For the complete documentation index, see [llms.txt](https://teamhycon.gitbook.io/docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://teamhycon.gitbook.io/docs/block-api/untitled-3/response-tip-info.md).

# Response (tip info)

#### Response (tip info) `200 OK, application/json` <a href="#response-tip-info-200-ok-applicationjson" id="response-tip-info-200-ok-applicationjson"></a>

| Parameter     | Type   | Description                                               |
| ------------- | ------ | --------------------------------------------------------- |
| **blockTip**  | object | An object that contains information about the block tip.  |
| **headerTip** | object | An object that contains information about the header tip. |

The information contained in the object is specified below.

| Parameter        | Type   | Description                                   |
| ---------------- | ------ | --------------------------------------------- |
| **height**       | number | Height of the block.                          |
| **hash**         | string | Hash value representing the block.            |
| **difficulty**   | string | Difficulty of the mined block.                |
| **merkleRoot**   | string | Merkle hash of all transactions in the block. |
| **stateRoot**    | string | Hash of the world state at that block.        |
| **timestamp**    | number | Timestamp when the block was added.           |
| **nonce**        | string | Nonce of the block.                           |
| **miner**        | string | A Hycon wallet address of the miner.          |
| **uncleHash**    | array  | List of hash values of uncle block.           |
| **previousHash** | string | The hash value of the previous block.         |

**Response Error Table**

| Status | Error       | Message                                    |
| ------ | ----------- | ------------------------------------------ |
| 404    | `NOT_FOUND` | Tip information is undefined in consensus. |

**Response (Success)**

```
{
    "blockTip": {
        "height": 412809,
        "hash": "8P26d9oA8tMjNFuJvhi9jX4QwrPSZ6UdamWrJRDAYhXv",
        "difficulty": "2.3139578302907827e-9",
        "merkleRoot": "xyw95Bsby3s4mt6f4FmFDnFVpQBAeJxBFNGzu2cX4dM",
        "stateRoot": "C18Mqz7XH9KLa6PHmuC1HsZFt67feFdPL6nkJTXzQ9de",
        "timestamp": 1543469194119,
        "nonce": "6148915604632898997",
        "miner": "H23fF8ktBWYwK7aHFbPSW52LtoHcbDvmT",
        "uncleHash": [
            "3DJaFmo5pcgDYzGgx793wJ7iJkwGfPUrcr4moMwmodix"
        ],
        "previousHash": "EpyZL4dsRiooEV3hWog2XaLhhxuQsXfZEbiaBqmnJMtU"
    },
    "headerTip": {
        "height": 413284,
        "hash": "FQD5cNyNzx7jWTV9sf392ZCzbzz1tFr3x7G7gu3KakJ2",
        "difficulty": "2.1151013686880353e-9",
        "merkleRoot": "G9sVhZZoEUUAa59ehuqiq4X6f3yn584pHDhgMCy4jBfR",
        "stateRoot": "HTqbKVEgaRkspZnrHL4nBhyStmJudDMDRNkiVrka1gVS",
        "timestamp": 1543479291581,
        "nonce": "9223373127776471614",
        "miner": "H23fF8ktBWYwK7aHFbPSW52LtoHcbDvmT",
        "uncleHash": [],
        "previousHash": "FRn4rbom7fgZzdBK87GjxtB9qbgG92PKwUcc1SKieL3t"
    }
}
```
