Skip to main content
GET
/
api
/
v1
/
pub
/
{project_id}
/
.well-known
/
jwks.json
JWKS
curl --request GET \
  --url https://org-api.hexoforge.dev/api/v1/pub/{project_id}/.well-known/jwks.json \
  --header 'X-API-Key: <api-key>'

Documentation Index

Fetch the complete documentation index at: https://orchestrator-docs.hexoforge.dev/llms.txt

Use this file to discover all available pages before exploring further.

Returns the JSON Web Key Set for the project. No X-API-Key or Bearer token. Replace {project_id} with your project UUID.

Response

200 OK
{
  "keys": [
    {
      "kty": "RSA",
      "use": "sig",
      "alg": "RS256",
      "kid": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
      "n": "0vx7agoebGcQSuu...",
      "e": "AQAB"
    }
  ]
}

Status codes

CodeMeaning
200JWKS returned
404Project missing or auth not enabled
See Best practices for caching and rotation.