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

# 내 run에 로깅된 데이터에 직접, 프로그래밍 방식으로 접근하려면 어떻게 해야 하나요?

이력 객체는 `wandb.log`로 로깅된 메트릭을 추적합니다. 이력 객체에 접근하려면 API를 사용합니다:

```python theme={null}
api = wandb.Api()
run = api.run("username/project/run_id")
print(run.history())
```

***

<Badge stroke shape="pill" color="orange" size="md">[Experiments](/ko/support/models/tags/experiments)</Badge>
