For the complete documentation index, see llms.txt. This page is also available as Markdown.

Likes

User rating system for places (requires authentication). Users can like or dislike places to help others discover quality content.

Like, dislike, or remove vote 🔒

patch
/places/{place_id}/likes

Vote on a place quality. Requires authentication.

Vote Options:

  • like: true - Upvote the place (recommend it)

  • like: false - Downvote the place (not recommended)

  • like: null - Remove your vote

Voting Power: Votes are weighted by user's Decentraland voting power (VP) from Snapshot. Users with more VP have stronger influence on the like_score.

Idempotent: Setting the same vote multiple times has no additional effect.

Authorizations
AuthorizationstringRequired

Decentraland authentication token obtained from the Decentraland SDK or auth services.

To authenticate:

  1. Use Decentraland's authentication SDK in your application
  2. Get the auth token from the SDK
  3. Include in requests: Authorization: Bearer <token>
Path parameters
place_idstring · uuidRequired

UUID of the place

Body
likeboolean · nullableOptional

Vote value:

  • true: Like/upvote (recommend)
  • false: Dislike/downvote (not recommended)
  • null: Remove your vote
Example: true
Responses
200

Vote updated successfully

application/json
okbooleanOptionalExample: true
patch/places/{place_id}/likes

Last updated