Skip to content

List liked gists

GET/gists/liked

Lists gists the authenticated caller has liked. Visibility of the caller's own private/unlisted likes depends on the token's scope:

  • Token with gist:read → every liked gist the caller may see.
  • Token without gist:read → only the public gists the caller liked.

Results are a JSON array; pagination is conveyed via the Link and X-* response headers (see the response headers below).

This liked endpoint also accept staredr in the path as aliases to try to keep a GitHub compatibility - e.g. /gists/starred. The behavior is the same.

Request

Headers

NameTypeScopes
Authorizationrequiredstring

Query parameters

NameTypeDescription
pageintegerPage number, 1-based. (default: 1, min: 1)
per_pageintegerItems per page. (default: 30, min: 1, max: 100)
sincestring <date-time>Only return gists updated at or after this RFC 3339 timestamp.

Responses

StatusBodyDescription
200GistSimple[]A list of liked gists.
Headers:LinkX-PageX-Per-PageX-TotalX-Total-Pages
400ErrorThe request was malformed.
401ErrorMissing or invalid credentials.