Skip to content

app.bsky.video.getUploadLimits

Lexicon Version: 1

Type: query

Get video upload limits for the authenticated user.

Parameters: (None defined)

Output:

  • Encoding: application/json
  • Schema:

Schema Type: object

NameTypeReq’dDescriptionConstraints
canUploadboolean
remainingDailyVideosinteger
remainingDailyBytesinteger
messagestring
errorstring

{
"lexicon": 1,
"id": "app.bsky.video.getUploadLimits",
"defs": {
"main": {
"type": "query",
"description": "Get video upload limits for the authenticated user.",
"output": {
"encoding": "application/json",
"schema": {
"type": "object",
"required": [
"canUpload"
],
"properties": {
"canUpload": {
"type": "boolean"
},
"remainingDailyVideos": {
"type": "integer"
},
"remainingDailyBytes": {
"type": "integer"
},
"message": {
"type": "string"
},
"error": {
"type": "string"
}
}
}
}
}
}
}