> For the complete documentation index, see [llms.txt](https://help.pickzen.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://help.pickzen.com/developers/rest-api/assistants.md).

# Assistants resource

The PickZen API lets you do the following with the Assistants resource.

## Assistants

<mark style="color:blue;">`GET`</mark> `https://admin.pickzen.com/api/assistants`&#x20;

Retrieve all created pickzens in the PickZen account linked to the provided token.

#### Headers

| Name                   | Type   | Description       |
| ---------------------- | ------ | ----------------- |
| X-Pickzen-Access-Token | string | API access token. |

{% tabs %}
{% tab title="200 List with all user Assistants " %}

```
{
	"assistants": [{
		"code": "NpMfpHcgyvQ",
		"title": "My shoe finder",
		"published": true,
		"lastUpdated": "2019-08-22T11:19:28Z"
	}, {
		"code": "4CeuzTDlJ6N",
		"title": "Lead generator",
		"published": true,
		"lastUpdated": "2019-04-09T06:49:57Z"
	}]
}
```

{% endtab %}
{% endtabs %}
