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

# List attributes

> List the attributes in the workspace.

Returns every [`Action / Attribute`](/en/api-reference/actions-and-attributes#action-or-attribute-object) record in the workspace, newest first. Attributes are the records with `alwaysGet: true`.

<Note>
  Actions and attributes share this endpoint, so the array contains both. Filter on `alwaysGet: true` to keep only attributes. See [List actions](/en/api-reference/list-actions) for the action view of the same route.
</Note>

## Headers

<ParamField header="Authorization" type="string" required>
  Bearer token containing your Fini workspace API key. Format: `Bearer fini_...` The key needs `read` scope.
</ParamField>

## Response

Returns a top-level array of [`Action / Attribute`](/en/api-reference/actions-and-attributes#action-or-attribute-object) objects.

## Errors

<AccordionGroup>
  <Accordion title="401 Unauthorized" icon="lock">
    The API key is missing, malformed, revoked, or invalid.
  </Accordion>

  <Accordion title="403 Forbidden" icon="shield-halved">
    The API key does not include the `read` scope required for this route.
  </Accordion>

  <Accordion title="500 Internal Server Error" icon="triangle-exclamation">
    Fini failed while loading records from storage.
  </Accordion>
</AccordionGroup>
