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 Bodyrequired
Section titled “Request Bodyrequired”Media typeapplication/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
Examplegenerated
{ "applicationAnchor": "example", "locale": "example"}Responses
Section titled “Responses”Application metadata.
Media typeapplication/json
object
applicationAnchor
required
string
applicationName
required
Localized application display name.
string
Examplegenerated
{ "applicationAnchor": "example", "applicationName": "example"}default
Section titled “default”Error response.
Media typeapplication/json
Error response body. Known failures may include a stable reason.
Some failures are status-only and have an empty body. A missing,
malformed, or structurally invalid JSON body returns InvalidBody.
object
reason
Stable machine-readable reason code.
string
Examplegenerated
{ "reason": "example"}