Testing AnkaSecure API via Swagger UI

This page explains how to authenticate and test the Key Management and Secure (non-streaming) endpoints directly from the interactive Swagger interface located at /swagger-ui/index.html.

1. Open the Swagger UI

Navigate to: /swagger-encryption/ in your browser. You should see an interface listing endpoints like Key Management, Secure, and Secure Streaming.

2. Authenticate to Obtain a JWT Token

Most endpoints require a valid JWT token. We’ll demonstrate using /api/authenticate/app for application-based authentication:

Note: You can also use POST /api/authenticate/login if you want user-based authentication instead of application-based. The concept is identical: provide username/password, copy the returned token.

3. Authorize with Your Token

At the top-right corner of the Swagger UI, there’s usually an Authorize button (green lock icon or similar). Click it.

Now Swagger UI includes your JWT token in the Authorization header for all subsequent requests, letting you access secured endpoints.

4. Test Key Management & Secure Endpoints

With your token set, you can test various endpoints:

Check the Response body to see results (encrypted or signed data in Base64, verification status, etc.).

Streaming Endpoints: Most of the Secure Streaming endpoints use multipart/form-data with file uploads. Swagger UI supports basic file inputs, but some advanced flows (like re-encrypt streaming or sign-file-stream) can be tricky to test via the browser. Often, it’s easier to use the CLI or custom scripts for large-file streaming.

5. Done!

You’ve now tested the AnkaSecure API directly via Swagger UI. Remember to re-Authorize with a fresh token if your JWT expires. You can also call /api/authenticate/refresh to get a new token if you have a refresh token.

For more complex streaming or file-based operations, see our CLI Usage and Use Cases pages.