games.gamesgamesgamesgames.getReviews

lexicon.store View official

Documentation

Get Popfeed reviews for a game, matched by IGDB ID.

main query

Get Popfeed reviews for a game, matched by IGDB ID.

Parameters

cursor string Optional

Pagination cursor (offset).

limit integer Optional

Maximum number of reviews to return.

uri string at-uri Required

AT URI of the game record.

Output

Encodingapplication/json
cursor string Optional

No description available.

reviews array Required

No description available.

Try It

Requests are sent directly from your browser. Some servers may block requests due to CORS.

Base URL for XRPC calls (e.g., https://api.bsky.social)
Parameters
Pagination cursor (offset).
Maximum number of reviews to return.
AT URI of the game record.
View raw schema
{
  "type": "query",
  "output": {
    "schema": {
      "type": "object",
      "required": [
        "reviews"
      ],
      "properties": {
        "cursor": {
          "type": "string"
        },
        "reviews": {
          "type": "array",
          "items": {
            "refs": [
              "#popfeedReview"
            ],
            "type": "union"
          }
        }
      }
    },
    "encoding": "application/json"
  },
  "parameters": {
    "type": "params",
    "required": [
      "uri"
    ],
    "properties": {
      "uri": {
        "type": "string",
        "format": "at-uri",
        "description": "AT URI of the game record."
      },
      "limit": {
        "type": "integer",
        "default": 20,
        "maximum": 100,
        "minimum": 1,
        "description": "Maximum number of reviews to return."
      },
      "cursor": {
        "type": "string",
        "description": "Pagination cursor (offset)."
      }
    }
  },
  "description": "Get Popfeed reviews for a game, matched by IGDB ID."
}
popfeedReview object

No description available.

Properties

containsSpoilers boolean Optional

No description available.

createdAt string datetime Required

An RFC 3339 formatted timestamp.

did string did Required

A decentralized identifier (DID).

rating integer Required

No description available.

minimum: 0maximum: 10
tags array of string Optional

No description available.

text string Optional

No description available.

title string Optional

No description available.

uri string at-uri Required

An AT Protocol URI (e.g., at://did:plc:xyz/app.bsky.feed.post/abc).

View raw schema
{
  "type": "object",
  "required": [
    "uri",
    "did",
    "rating",
    "createdAt"
  ],
  "properties": {
    "did": {
      "type": "string",
      "format": "did"
    },
    "uri": {
      "type": "string",
      "format": "at-uri"
    },
    "tags": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "text": {
      "type": "string"
    },
    "title": {
      "type": "string"
    },
    "facets": {
      "type": "array",
      "items": {
        "ref": "social.popfeed.richtext.facet",
        "type": "ref"
      }
    },
    "rating": {
      "type": "integer",
      "maximum": 10,
      "minimum": 0
    },
    "createdAt": {
      "type": "string",
      "format": "datetime"
    },
    "containsSpoilers": {
      "type": "boolean"
    }
  }
}

Lexicon Garden

@