> 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/api-v3-2/untitled-3/url-method-tx-by-address.md).

# URL method (tx by address)

**Request Body - `Content-Type: application/json;charset=utf-8`**

| Parameter | Required | Description                                                                 |
| --------- | -------- | --------------------------------------------------------------------------- |
| `address` | Yes      | An address value to query transaction information                           |
| `count`   | No       | Number of most recent transactions to return, if applicable (*Default: 10*) |

*If the address has fewer transactions than `count`, the returned list of transactions will be of length less than `count`.*&#x47;ET/api/v3/tx/:address?{count}

**Example request without count**

```
curl -X GET http://localhost:2442/api/v3/tx/H497fHm8gbPZxaXySKpV17a7beYBF9Ut3 \
-H 'Content-Type: application/json;charset=utf-8'
```

**Example request with count**

```
curl -X GET http://localhost:2442/api/v3/tx/H497fHm8gbPZxaXySKpV17a7beYBF9Ut3\?count\=5 \
-H 'Content-Type: application/json;charset=utf-8'
```
