Skip to main content
You almost never call this directly — the marketplace website fires it when a listing page opens. Call it only when you build a custom marketplace front end on top of the public API.

When to use

Bump the public view count of a marketplace listing — the number of times its page has been opened. The marketplace site invokes this once per listing per browser session: a refresh in the same session does not double-count, so the counter tracks distinct page opens rather than raw hits. The endpoint records a usage signal only — it does not return any listing content. This endpoint is public — no API key required.

Endpoint

Auth

None. Do not send an Authorization header.

Request body

Response (200)

Examples

curl

Node.js

To avoid inflating the counter, fire this once per session per listing — for example, guard it behind a sessionStorage flag keyed on the slug.

Errors

Next