Fetch localized public metadata about an application.
POST
/info
const url = 'https://connect-api.sudomimus.com/info';const options = { method: 'POST', headers: {'Content-Type': 'application/json'}, body: '{"applicationAnchor":"example","locale":"example"}'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request POST \ --url https://connect-api.sudomimus.com/info \ --header 'Content-Type: application/json' \ --data '{ "applicationAnchor": "example", "locale": "example" }'Request Body required
Section titled “Request Body required ” Media type application/json
object
applicationAnchor
required
string
locale
required
IETF BCP 47 locale tag (e.g. “en-US”). Falls back to the application’s default locale if not available.
string
Example generated
{ "applicationAnchor": "example", "locale": "example"}Responses
Section titled “ Responses ”Application metadata.
Media type application/json
object
applicationAnchor
required
string
applicationName
required
Localized application display name.
string
applicationPublicKey
required
PEM-encoded application public key used to verify issued JWTs.
string
Example generated
{ "applicationAnchor": "example", "applicationName": "example", "applicationPublicKey": "example"}default
Section titled “default ”Error response.
Media type application/json
Error response body. The Connect service emits { "reason": "<SymbolDescription>" }
for known failure modes. When the reason symbol’s description begins with
PRIVATE, the body is empty (zero bytes) and only the HTTP status carries
signal — both reason and the body itself are absent in that case.
object
reason
Stable machine-readable reason code.
string
Example generated
{ "reason": "example"}