com.atproto.sync.listBlobs

List blob CIDs for an account, since some repo revision. Does not require auth; implemented by PDS.

class atproto_client.models.com.atproto.sync.list_blobs.Params

Bases: ParamsModelBase

Parameters model for com.atproto.sync.listBlobs.

field cursor: str | None = None

Cursor.

field did: Did [Required]

The DID of the repo.

field limit: int | None = None

Limit.

Constraints:
  • ge = 1

  • le = 1000

field since: Tid | None = None

Optional revision of the repo to list blobs since.

class atproto_client.models.com.atproto.sync.list_blobs.ParamsDict

Bases: TypedDict

did: Did

The DID of the repo.

cursor: NotRequired[str | None]

Cursor.

limit: NotRequired[int | None]

Limit.

since: NotRequired[Tid | None]

Optional revision of the repo to list blobs since.

class atproto_client.models.com.atproto.sync.list_blobs.Response

Bases: ResponseModelBase

Output data model for com.atproto.sync.listBlobs.

field cids: List[Cid] [Required]

Cids.

field cursor: str | None = None

Cursor.