systems.timker.hawlt.listNotes

timker.systems

Documentation

List note records from a repo, with optional pagination.

main query

List note records from a repo, with optional pagination.

Parameters

cursor string Optional

No description available.

limit integer Optional

No description available.

repo string at-identifier Required

Either a DID or an AT Protocol handle.

Output

Encodingapplication/json
cursor string Optional

No description available.

notes 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
Either a DID or an AT Protocol handle.
View raw schema
{
  "type": "query",
  "output": {
    "schema": {
      "type": "object",
      "required": [
        "notes"
      ],
      "properties": {
        "notes": {
          "type": "array",
          "items": {
            "ref": "#noteView",
            "type": "ref"
          }
        },
        "cursor": {
          "type": "string",
          "maxLength": 100
        }
      }
    },
    "encoding": "application/json"
  },
  "parameters": {
    "type": "params",
    "required": [
      "repo"
    ],
    "properties": {
      "repo": {
        "type": "string",
        "format": "at-identifier"
      },
      "limit": {
        "type": "integer",
        "maximum": 100,
        "minimum": 1
      },
      "cursor": {
        "type": "string",
        "maxLength": 100
      }
    }
  },
  "description": "List note records from a repo, with optional pagination."
}
noteView object

A note record with its AT URI, CID, and server-side index timestamp.

Properties

cid string cid Required

A content identifier (CID) referencing immutable data.

indexedAt string datetime Required

An RFC 3339 formatted timestamp.

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",
    "cid",
    "value",
    "indexedAt"
  ],
  "properties": {
    "cid": {
      "type": "string",
      "format": "cid"
    },
    "uri": {
      "type": "string",
      "format": "at-uri"
    },
    "value": {
      "ref": "systems.timker.hawlt.note",
      "type": "ref"
    },
    "indexedAt": {
      "type": "string",
      "format": "datetime"
    }
  },
  "description": "A note record with its AT URI, CID, and server-side index timestamp."
}

Lexicon Garden

@