JWKS
GET /v1/jwks
Returns the identity_bridge's JSON Web Key Set (JWKS). Use this to verify Agent Badge signatures independently without calling POST /v1/verify.
Auth: None
Timeout: 10 seconds
Request
curl https://identity.sentryagent.ai/v1/jwksResponse
{
"keys": [
{
"kty": "OKP",
"use": "sig",
"kid": "key-1",
"alg": "EdDSA",
"crv": "Ed25519",
"x": "base64url-encoded-public-key"
}
]
}Key Fields
| Field | Value | Description |
|---|---|---|
| kty | OKP | Octet Key Pair (Ed25519) |
| use | sig | Signing key |
| alg | EdDSA | Edwards-curve Digital Signature Algorithm |
| crv | Ed25519 | Curve |
| x | base64url | Public key material |
Agent Badges are signed with EdDSA (Ed25519). Use the x parameter to verify badge signatures.