list_creator_profiles
List current creator-profile versions, newest changed first. Free; read scope.
Returns {profiles, limit, offset, total}. Each profile carries its immutable
version, declarations, current secondary-use decisions, consent receipts, and
unverified-attestation warning. Errors: unauthorized, forbidden, invalid_request,
rate_limited.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Profile page size, 1-100. | |
| offset | No | Number of rows to skip for paging, 0-9223372036854775807. Page with offset += the limit you actually requested; `total` in the response is the unpaged count. The ceiling is SQLite's largest bindable integer: above it the read could only ever have been a 500, so it is a typed invalid_request instead. | |
| api_key | No | API key for this call. Omit to fall back to the Authorization: Bearer / X-API-Key request header (streamable-HTTP only), then the VHGENGINE_API_KEY env var (the stdio default). No key resolvable -> unauthorized. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Page size actually applied. | |
| total | No | Profiles owned by this account before paging. | |
| offset | No | Offset this page started at. | |
| profiles | No | Current profile objects in this page. |