Skip to content

Favorite an artifact

POST
/v1/artifacts/{id}/favorite
curl --request POST \
--url https://shareout.site/v1/artifacts/example/favorite \
--header 'Authorization: Bearer <token>'

Idempotent. Any logged-in user for public/unlisted artifacts; viewer+ for private.

id
required
string

Artifact ID (e.g. art_abc123).

Favorited

Media type application/json
object
success
boolean
artifact_id
string
favorited
boolean
Example generated
{
"success": true,
"artifact_id": "example",
"favorited": true
}