Public config metadata
Unauthenticated. Returns only safe-to-expose fields (name, description, self-service methods, auth providers). Used by mobile/web apps before login. Rate limited to 60/15m per IP.
Request
Method: GET
Path: /api/apps/{id}/public
Authentication: Not required
Parameters
| Name | Type | In | Required | Description |
|---|---|---|---|---|
| id | string | path | Yes |
Responses
200 - Public metadata
404 - Configuration not found
429 - Rate limit exceeded
Examples
cURL
curl -X GET \
-H "Authorization: Bearer YOUR_TOKEN" \
-H "Content-Type: application/json" \
http://localhost:3000/api/apps/{id}/public
JavaScript
const response = await fetch('http://localhost:3000/api/apps/{id}/public', {
method: 'GET',
headers: {
'Content-Type': 'application/json',
'Authorization': 'Bearer ' + token,
},
});
const data = await response.json();
console.log(data);
This documentation is automatically generated from the OpenAPI specification.