const response = await fetch('https://api.ufw.dev/v1/account/clients/{client_id}', {
method: 'GET',
headers: {
Authorization: 'Bearer YOUR_ACCESS_TOKEN',
},
});
const data = await response.json();
Response200
{
"client": {
"id": "ufw_client_4Qm2Zt",
"name": "Acme Podcasts",
"owner": "Acme, Inc.",
"type": "THIRD_PARTY",
"application_type": "web",
"token_endpoint_auth_method": "none",
"is_public": true,
"home_url": "https://example.com",
"client_uri": "https://example.com",
"policy_uri": "https://example.com/privacy",
"tos_uri": "https://example.com/terms",
"jwks_uri": null,
"redirect_uris": [
"https://example.com/oauth/callback"
],
"post_logout_redirect_uris": [],
"scopes": [
"openid",
"profile",
"podcasts.read"
],
"contacts": [
"support@example.com"
],
"icon_url": null,
"verified_domain_id": null,
"verified_domain": null,
"client_secret_rotated_at": null,
"created_at": "2026-08-11T09:24:05Z",
"updated_at": "2026-08-11T09:24:05Z"
}
}