# credentials_public_assertions_retrieve Public endpoint to retrieve a specific credential assertion by its entity ID. This endpoint allows public access to view a specific credential assertion without authentication. Path Parameters: entity_id (str): The assertion entity ID Returns: A JSON response containing the assertion details using the AssertionSerializer format Error Responses: 404 Not Found: - If the assertion doesn't exist: Empty response with 404 status - If the assertion has been revoked: JSON with error detail and revocation reason 500 Internal Server Error: If an unexpected error occurs Endpoint: GET /api/credentials/public/assertions/{entity_id}/ Version: 3.59.0-ai-plus ## Path parameters: - `entity_id` (string, required) ## Response 200 fields (application/json): - `entityId` (string, required) - `issuedOn` (string, required) - `credentialDetails` (object, required) - `recipient` (object, required) - `metadata` (any,null) - `course` (object, required) - `program` (object, required) - `narrative` (string,null) - `revoked` (boolean) - `revocationReason` (string, required) - `acceptance` (string) * - Unaccepted * - Accepted * - Rejected Enum: "Unaccepted", "Accepted", "Rejected" - `expires` (string, required)