oneHUB Example Data API

API Overview

Universal Data API provides instant access to randomly generated test data, including users, articles, products and analytics. Perfect for testing, integrating and benchmarking client applications.

Our API supports JSON/REST and returns structured objects optimized for performance.

Available Endpoints

GET /v1/user

Returns a single random user object.

{
  "id": 241,
  "name": "Michael Connor",
  "email": "m.connor@example.com",
  "registered": "2024-01-18"
}

GET /v1/article

Returns a random article preview.

{
  "id": 9931,
  "title": "Modern API Best Practices",
  "views": 5421,
  "tags": ["api","tech"]
}

GET /v1/ping

Health check endpoint.

{"status":"ok","time":"2024-01-01T12:00:00Z"}

Try API Live

Press the button to simulate a live API call from the server.

Waiting...