API Documentation

Welcome to Ulnoac's API documentation. This API enables seamless integration with our services, providing endpoints for data retrieval, user management, and real-time analytics.

Need assistance? Contact our developers or check our terms for compliance.

Getting Started

Authentication

Use an API key in the `Authorization` header
curl --location 'https://api.ulnoac.com/data' \
--header 'Authorization: Bearer YOUR_API_KEY'
                        

Base URL

https://api.ulnoac.com/v1

Supported Request Types

GET POST PUT DELETE

Endpoints

/users

GET

Retrieve a list of authorized users with pagination.

Parameters
  • limit - Max results per page
  • offset - Page offset
Response Format { "data": [...], "meta": {"page": 1, "hasNext": true} }

/analytics

POST

Send analytics events for processing.

Request Body { "event": "user_login", "userId": "12345" }