API Tester

Test the Application API with interactive forms and copy-ready code examples in multiple languages. Perfect for development and debugging.

Quick Actions

Test Request

Response

Code Examples

Python
C++
C#
JavaScript
Java
Go
curl

PYTHON requests library

import requests

BASE_URL = 'https://proudlyauthentication.com/api/v1'

# 1. Initialize handshake
init_response = requests.get(BASE_URL, params={
    'route': '{admin}/{app}/init'
})
print(init_response.json())
session_id = init_response.json().get('session_id')

# 2. Call action
response = requests.post(BASE_URL, data={
    'route': '{admin}/{app}/getsubscriptions',
    'sessionid': session_id
})
print(response.json())