> For the complete documentation index, see [llms.txt](https://saseul-gold.gitbook.io/saseul-gold-docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://saseul-gold.gitbook.io/saseul-gold-docs/backend-api/pair-detail-api.md).

# Pair Detail API

Check the details of the liquidity pool. You can check token A, B deposit amount, A/B exchange fee, B/A exchange fee, etc.

```
GET /rawrequest/pair/{pair_address}
```

* **Example**

```
GET http://3.36.127.229:9090/rawrequest/pair/721e8aedc081770b26c72b62fc195a9a8bcb
```

* **Response**

```
{
    "accumulated_reward_per_unit": "110062368301226",
    "address_a": "6f52d7ba6744d3c280186049703d8572a3e2be427ac7c662aa7f92d2413",
    "address_b": "db97794e5a67ed5f423b2cde9092ce177483c838c83f3e5250c7f29828fe",
    "pair_address": "721e8aedc081770b26c72b62fc195a9a8bcb33eaf178ae30b3cb546c69",
    "rate_a_to_b": "1692822970180181620",
    "rate_b_to_a": "586417538832730982",
    "reserve_a": "1206005862953533073024",
    "reserve_b": "2049395436258669107840",
    "total_liquidity": "1572020992226248884224"
}
```
