No description available.
Input
Encoding
application/jsontargetLang
stringlanguage
Required
A BCP-47 language tag (e.g., en, pt-BR).
uri
stringat-uri
Required
An AT Protocol URI (e.g., at://did:plc:xyz/app.bsky.feed.post/abc).
Output
Encoding
application/jsoncached
boolean
Optional
No description available.
text
string
Required
No description available.
Try It
Requests are sent directly from your browser. Some servers may block requests due to CORS.
View raw schema
{
"type": "procedure",
"input": {
"schema": {
"type": "object",
"required": [
"uri",
"targetLang"
],
"properties": {
"uri": {
"type": "string",
"format": "at-uri"
},
"targetLang": {
"type": "string",
"format": "language"
}
}
},
"encoding": "application/json"
},
"output": {
"schema": {
"type": "object",
"required": [
"text"
],
"properties": {
"text": {
"type": "string"
},
"cached": {
"type": "boolean"
}
}
},
"encoding": "application/json"
}
}