> ## 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.

# How can I fetch these Version IDs and ETags in W&B?

If you log an artifact reference with W\&B and enable versioning on the buckets, the version IDs appear in the Amazon S3 UI. To retrieve these version IDs and ETags in W\&B, fetch the artifact and read the corresponding manifest entries. For example:

```python theme={null}
artifact = run.use_artifact("my_table:latest")
for entry in artifact.manifest.entries.values():
    versionID = entry.extra.get("versionID")
    etag = entry.extra.get("etag")
```

***

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