> ## 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 にログされたデータに直接プログラムからアクセスするにはどうすればよいですか？

history オブジェクトは、`wandb.log` でログしたメトリクスをトラッキングします。API を使用して history オブジェクトにアクセスします。

```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](/ja/support/models/tags/experiments)</Badge>
