Skip to content

Fetch localized public metadata about an application.

POST
/info
curl --request POST \
--url https://connect-api.sudomimus.com/info \
--header 'Content-Type: application/json' \
--data '{ "applicationAnchor": "example", "locale": "example" }'
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"
}

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"
}

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"
}