import type React from 'react'; import { SwaggerExplorer } from '@/components/SwaggerExplorer'; export const metadata = { title: 'API Explorer — SentryAgent AgentIdP', description: 'Interactively explore and test the SentryAgent AgentIdP REST API.', }; export default function ApiExplorerPage(): React.ReactElement { const apiUrl = process.env.NEXT_PUBLIC_API_URL ?? 'http://localhost:3000'; return (

API Explorer

Explore, authenticate, and test every AgentIdP endpoint directly from your browser. Use the Authorize button to set your Bearer token.

Spec loaded from:{' '} {apiUrl}/openapi.json

); }