List Public Portfolios
Lists the subdomains of every portfolio currently in `LIVE` or `GRACE` status, most recently updated first. Returns subdomain and timestamp only — no portfolio content. No user session is required, but the request must carry an API key or originate from a whitelisted first-party origin; otherwise it is rejected with `401`. Cached for 5 minutes.
Authorization
ApiKeyAuth Your personal API key — vw_ followed by 64 hex characters. The same key is also accepted
as Authorization: Bearer vw_....
In: header
Query Parameters
1 <= value <= 1000 <= value <= 5000Response Body
application/json
application/json
curl -X GET "https://example.com/api/v1/portfolios/public"{ "success": true, "message": "string", "data": [ { "subdomain": "string", "updatedAt": "2019-08-24T14:15:22Z" } ]}Portfolios
Public portfolio pages, drafts, publishing, and analytics.
Get Public Portfolio By SubdomainGET
Returns the published snapshot for a live portfolio subdomain. Returns `404` for a suspended portfolio, or one whose grace period has just expired — that lookup also flips the record to `SUSPENDED` as a side effect. Cached for up to 10 minutes, shortened to the remaining grace window for portfolios in `GRACE`. No user session is required, but the request must carry an API key or originate from a whitelisted first-party origin; otherwise it is rejected with `401`.