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

# actions_download_artifact

> Download an artifact and report what is in it: every entry's name and size, plus the contents of the small text files — a JUnit report or a coverage summary comes back readable. Large or binary entries are listed and not inlined. An expired artifact answers 410.

<div className="tool-route"><span className="tool-row-method" data-method="GET">GET</span><code>{"https://api.github.com/repos/{owner}/{repo}/actions/artifacts/{artifactId}/zip"}</code></div>

```python github_actions_download_artifact.py theme={null}
from charter.packs import github

result = await github.actions_download_artifact.ainvoke({"owner": ..., "repo": ..., "artifactId": ...})
```

<Note>
  Requires `repo`, `read:user`.
</Note>

## Path parameters

<div className="reference-table">
  | Field                                                              | Type      | Description                                                                              |
  | ------------------------------------------------------------------ | --------- | ---------------------------------------------------------------------------------------- |
  | `owner` <span className="required" title="required">\*</span>      | `string`  | The account owner of the repository. The name is not case sensitive.                     |
  | `repo` <span className="required" title="required">\*</span>       | `string`  | The name of the repository without the `.git` extension. The name is not case sensitive. |
  | `artifactId` <span className="required" title="required">\*</span> | `integer` | The unique identifier of the artifact.                                                   |
</div>
