Product

How Jentic Works

From API assessment to production deployment in four simple steps.

Product Overview

PLATFORM

API DirectoryBrowse 10,000+ APIs ready for AI agent integrationAPI ScorecardAssess your APIs for AI-readiness with automated scoringAgentic SandboxSafely simulate AI agents with your production APIsJenticSign in to the Jentic web app

CAPABILITIES

IntegrationConnect AI agents to your existing systemsWorkflowsDiscover and capture successful agent workflowsGovernanceDefine, observe, and enforce AI policies

TOOLS

Arazzo UIVisualize Arazzo workflows as interactive documentationArazzo EditorBuild and edit multi-step API workflows visually
Pricing
Developers

GET STARTED

DocumentationGuides and API referenceQuickstartGet up and running in minutes

COMMUNITY

GitHubOpen source projects and examples
Resources
BlogLatest articles and insightsPress & MediaBrand assets and press contactOpen StandardsBuilt on open specs. Never locked in.NewsletterAPIs, AI agents, mixed with architecture and strategy.
Company
About UsOur mission and teamCareersJoin our teamContactGet in touch
Install Jentic OneBook a Demo
How Jentic WorksAPI DirectoryAPI ScorecardAgentic SandboxJenticIntegrationWorkflowsGovernanceArazzo UIArazzo Editor
Pricing
DocumentationQuickstartGitHub
BlogPress & MediaOpen StandardsNewsletter
About UsCareersContact
Request a demoInstall Jentic One
Jentic
For Enterprises
  • Product Overview
  • Agentic Sandbox
  • Book a Demo
For Developers
  • Jentic One
  • Documentation
  • GitHub
Company
  • About Jentic
  • Careers
  • Contact Us
ISO/IEC 27001:2022 certification badge issued by Prescient Security

Information Security Management System

Certified to ISO/IEC 27001:2022 by Prescient Security

Terms & Conditions•Privacy Policy•
© 2026 Jentic. All rights reserved.
APIs / Security / Microsoft Azure / AttestationClient
AttestationClient logo

Microsoft Azure AttestationClient

Browse all Microsoft Azure APIs
★ Only Publicly Available OpenAPI DocumentSecurityComplianceoauth26 EndpointsREST

For Agents

Verify trusted execution environment attestations and manage attestation policies for Intel SGX and TPM-backed workloads on Azure from an AI agent.

Use for: Retrieve the OpenID configuration for an attestation tenant, Get the signing certificates used to verify attestation tokens, Read the current SGX attestation policy on my tenant, Update the attestation policy for confidential VM workloads

Not supported: Does not issue enclave identities, generate attestation evidence, or operate the trusted execution environment itself — use for retrieving attestation tenant metadata and policy only.

AttestationClient is the per-tenant Azure Attestation Service API used to verify the integrity of trusted execution environments such as Intel SGX enclaves and TPM-backed workloads. It exposes the OpenID Connect discovery document, the signing certificate set used to verify attestation tokens, and the policy management endpoints that govern how attestation requests are evaluated. Use this client to validate confidential compute workloads or to maintain attestation policy.

Jentic One on GithubView OpenAPI Document

Install Jentic One Beta

Connect the AttestationClient to your agent

Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the AttestationClient, or any other public or private API you need. You set the rules, the agent never sees your credentials, and every call is logged.

Two steps, two machines. Install the instance in a safe environment, then register your agent from wherever it runs.

1

Step 1: Jentic One Host machine

# On the machine that will host your Jentic One instance:
curl -fsSL https://raw.githubusercontent.com/jentic/jentic-one/main/tools/install.sh | sh
2

Step 2: Agent machine

# On the machine where your agent runs (keep this separate from the instance):
curl -fsSL https://raw.githubusercontent.com/jentic/jentic-one/main/tools/install.sh | sh
jentic register       # connects your agent to your Jentic One instance

Jentic One is in public beta. The setup above keeps your agent separate from the instance, which is what you want before using real credentials: an agent running as the same OS user as Jentic One can read its stored keys directly. Just evaluating? A single local install is fine to start. See the secure deployment guide for the tiers.

Capabilities

What an agent can do with AttestationClient API.

Retrieve the OpenID Connect discovery metadata for the attestation tenant

Fetch the signing certificate set used to verify attestation tokens

Read the current attestation policy for an attestation type

Update the attestation policy that governs how attestation requests are evaluated

Validate enclave identity claims against an authoritative attestation tenant

Use Cases

Patterns agents use AttestationClient API for, with concrete tasks.

★ Confidential Compute Token Verification

Applications that consume attestation tokens issued by Azure Attestation must verify the token signature against the tenant's certificate set before trusting the enclave identity it claims. The /certs endpoint returns the JWKS, which a JWT library uses to verify the token. The /.well-known/openid-configuration endpoint provides the issuer and JWKS URI for standards-based JWT verification.

GET /.well-known/openid-configuration to discover the JWKS URI, GET /certs to fetch the signing keys, then verify the attestation JWT signature using the matching key by kid.

Attestation Policy Governance

Security teams operating confidential workloads need to control which enclave images and configurations are accepted by the attestation tenant. The policy endpoints expose the current policy text and allow signed updates so audit trails are preserved. Updates are applied per attestation type (SGX, OpenEnclave, TPM, VBS).

Read the current policy via /operations/policy/current, prepare a new policy document signed with the policy management key, and POST to /operations/policy/updatepolicy.

Enclave Identity Validation Pipeline

A relying party that issues secrets to confidential VMs only after validating the enclave's measurements relies on the attestation tenant to certify those measurements. Calling the certs and OIDC endpoints during startup (and refreshing on a cadence) keeps the verification path stateless and reproducible across instances.

On service startup, fetch and cache /.well-known/openid-configuration and /certs; on each attestation request, verify the JWT against the cached key by kid before releasing the secret.

Agent-Driven Attestation Audit via Jentic

A security AI agent auditing a tenant's confidential compute posture can use Jentic to retrieve the current attestation policy without holding the tenant's policy management credentials. Jentic returns the policy schema and current text for review, supporting compliance documentation generation against published policy baselines.

Search Jentic for 'get current Azure Attestation policy', execute against the tenant for each attestation type, and compare the returned policy against the organisation's documented baseline.

Key Endpoints

6 endpoints — attestationclient is the per-tenant azure attestation service api used to verify the integrity of trusted execution environments such as intel sgx enclaves and tpm-backed workloads.

METHOD

PATH

DESCRIPTION

GET

/.well-known/openid-configuration

Retrieve the OpenID Connect discovery document for the attestation tenant

GET

/certs

Fetch the signing certificate set (JWKS) used to verify attestation tokens

GET

/operations/policy/current

Read the current attestation policy

POST

/operations/policy/updatepolicy

Update the attestation policy for an attestation type

GET

/.well-known/openid-configuration

Retrieve the OpenID Connect discovery document for the attestation tenant

GET

/certs

Fetch the signing certificate set (JWKS) used to verify attestation tokens

GET

/operations/policy/current

Read the current attestation policy

POST

/operations/policy/updatepolicy

Update the attestation policy for an attestation type

Why Jentic?

Three things that make agents converge on Jentic-routed access.

Credential management

Credential isolation

AAD bearer tokens authorised for attestation policy management are stored in the Jentic vault. Agents receive a scoped session at call time and never hold the policy signing key or AAD client secret.

Intent-based discovery

Intent-based discovery

Agents search by intent ('verify an Azure attestation token') and Jentic returns the matching operation with its parameter schema, so the agent does not have to discover the JWKS or OIDC discovery URL separately.

Time to first call

Time to first call

Direct integration: half a day to wire OIDC discovery, JWKS fetch, and JWT verification, longer if also handling policy updates. Through Jentic: under 30 minutes for verification flows; policy updates remain signed-payload operations regardless.

Related APIs

Alternatives and complements available in the Jentic catalogue.

Complementary

Key Vault Client

→

Release secrets to enclaves only after attestation succeeds

Pair Key Vault with Attestation when an agent needs to gate secret release on a verified TEE identity.

Complementary

Authorization Management Client

→

Manage RBAC role assignments for the attestation tenant

Use Authorization Management to grant policy management roles on the attestation provider resource.

Alternative

Policy Client

→

Azure Policy for general resource governance, not TEE attestation

Choose Policy Client for resource-level governance; choose Attestation for verifying enclave or TPM identity.

FAQs

Specific to using AttestationClient API through Jentic.

What authentication does the AttestationClient use?

Azure Active Directory OAuth 2.0 bearer tokens for the policy management endpoints. The /.well-known/openid-configuration and /certs endpoints are anonymous, since they are needed to verify tokens before any authenticated call. Jentic vaults the AAD token used for policy operations and issues a scoped session at call time.

Can I update the SGX attestation policy through this API?

Yes. POST a signed policy document to /operations/policy/updatepolicy with the attestation type set to SGX-IntelSDK or OpenEnclave. The policy must be signed with a key that the tenant has authorised for policy management; the service rejects unsigned or improperly signed updates.

What are the rate limits for the AttestationClient?

The discovery and JWKS endpoints are designed for high-frequency cached use and have generous limits. Policy management endpoints are infrequent administrative calls and are not a typical bottleneck. Specific quotas are not surfaced in the 2018-09-01-preview spec; consult Azure Attestation service quotas for current values.

How do I verify an attestation token with this API through Jentic?

Search Jentic for 'get Azure Attestation signing certificates'. Jentic returns the schema for GET /certs. Execute it once and cache the JWKS, then use a JWT library to verify each attestation token's signature against the matching key by kid.

Is Azure Attestation free?

Azure Attestation has a free tier covering a base volume of attestation calls per month, with paid tiers for higher throughput. The /.well-known/openid-configuration and /certs endpoints used for token verification are not metered. See Azure Attestation pricing for current call quotas.

Where is the JWKS endpoint for verifying attestation tokens?

The JWKS is served from /certs on the per-tenant attestation URL. The discovery document at /.well-known/openid-configuration also references the JWKS URI under the jwks_uri field, which is the recommended way to locate the keys per OpenID Connect convention.

GET STARTED

Start building with AttestationClient API

Explore with Jentic
View OpenAPI Document