> ## Documentation Index
> Fetch the complete documentation index at: https://wb-21fd5541-sdk-add-methods-properties.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# ArtifactType methods

## <Badge color="yellow" size="lg" shape="rounded">Class</Badge> wandb.apis.public.ArtifactType

## <Badge color="blue" size="lg" shape="rounded">method</Badge> ArtifactType.collection()

Get a specific artifact collection by name.

```python theme={null}
self,
name: 'str'
```

##### Arguments

<ResponseField name="name" type="str">
  The name of the artifact collection to retrieve.
</ResponseField>

## <Badge color="blue" size="lg" shape="rounded">method</Badge> ArtifactType.collections()

Get all artifact collections associated with this artifact type.

```python theme={null}
self,
filters: 'Mapping[str, Any] | None' = None,
order: 'str | None' = None,
per_page: 'int' = 50,
start: 'str | None' = None
```

##### Arguments

<ResponseField name="filters" type="Mapping[str, Any] | None">
  Optional mapping of filters to apply to the query.
</ResponseField>

<ResponseField name="order" type="str | None">
  Optional string to specify the order of the results. If prefixed with '+', sorts ascending (default). If prefixed with '-', sorts descending. The default order is the collection ID in descending order.
</ResponseField>

<ResponseField name="per_page" type="int">
  The number of artifact collections to fetch per page. Default is 50.
</ResponseField>

<ResponseField name="start" type="str | None">
  Pagination cursor for resuming a past query, captured from a previous paginator's `.cursor` attribute.
</ResponseField>
