## List `client.me.vals.list(ValListParamsquery, RequestOptionsoptions?): PageCursorURL` **get** `/v2/me/vals` [BETA] List all of a user's vals for authenticated users ### Parameters - **query:** `ValListParams` - **limit:** `number` Maximum items to return in each paginated response - **offset:** `number` Number of items to skip in order to deliver paginated results ### Returns - `Val` ### Example ```node import ValTown from '@valtown/sdk'; const client = new ValTown({ bearerToken: 'My Bearer Token', }); // Automatically fetches more pages as needed. for await (const val of client.me.vals.list({ limit: 1, offset: 0 })) { console.log(val.id); } ```