> ## Documentation Index
> Fetch the complete documentation index at: https://docs.injective.network/llms.txt
> Use this file to discover all available pages before exploring further.

> OLP 대시보드

# 성과 추적

시장 할당, 예상/획득 보상, 시장별 점수 및 자격에 대한 현재 및 과거 정보는 [Injective Trading Portal](https://trading.injective.network/)의 [OLP Dashboard](https://trading.injective.network/program/liquidity)에서 찾을 수 있습니다.

스냅샷 데이터는 [점수 탭](https://trading.injective.network/program/liquidity/scores)에서 찾을 수 있습니다. 모든 주소와 모든 시장에 대한 점수를 동시에 보기 위해 [점수 탭](https://trading.injective.network/program/liquidity/scores)에서 CSV 파일을 다운로드할 수도 있습니다. 이 정보는 광범위한 수준에서 데이터를 보려는 시장 참가자에게 유용할 수 있습니다.

현재 및 이전 epoch에 대한 OLP 데이터는 프로그래밍 방식으로도 쿼리할 수 있습니다:

> Epochs 및 Markets:

```
curl -s -X POST -H "Content-Type: application/json" -d '{}' https://glp.rest.injective.network/api/olp/v1/epochs
```

> 주소별 보상:

```
curl -s -X POST -H "Content-Type: application/json" -d '{"epoch_id":"epoch_231128_231225"}' https://glp.rest.injective.network/api/olp/v1/epoch-scores
```

> 시장 내 보상:

```
curl -X POST -H "Content-Type: application/json" -d '{"epoch_id": "epoch_240123_240219", "market_id":"0x4ca0f92fc28be0c9761326016b5a1a2177dd6375558365116b5bdda9abc229ce", "page": {"per_page": 200}}' https://glp.rest.injective.network/api/olp/v1/total-scores
```

> 주소에 대한 스냅샷:

```
curl -X POST -H "Content-Type: application/json" -d '{"epoch_id": "epoch_240123_240219", "account_address": "<INSERT ADDR>"}' https://glp.rest.injective.network/api/olp/v1/epoch-scores/history
```
