GRP RND Security API

Static REST API for Testing & Development

v1.0.0

Welcome

This is a static REST API implementation for api.grp-rnd-sec.com. It provides sample endpoints for testing and demonstration purposes. All responses are served as static JSON files via Nginx.

Documentation

Available Endpoints

Health Check

GET /api/v1/health
Check API service health and status
Try it →

Users

GET /api/v1/users
Retrieve a list of all users
Try it →
GET /api/v1/users/{id}
Get detailed information about a specific user
Try with ID: 1 → Try with ID: 2 → Try with ID: 3 →

Products

GET /api/v1/products
Retrieve a list of all products
Try it →
GET /api/v1/products/{id}
Get detailed information about a specific product
Try with ID: 101 → Try with ID: 102 → Try with ID: 103 →

Base URL

https://api.grp-rnd-sec.com

Response Format

All responses are in JSON format with appropriate Content-Type headers. List endpoints include pagination metadata, while detail endpoints wrap the resource in a data object.

Example Usage

Using curl:

curl -X GET https://api.grp-rnd-sec.com/api/v1/users/1

Using JavaScript fetch:

fetch('https://api.grp-rnd-sec.com/api/v1/products')
  .then(response => response.json())
  .then(data => console.log(data));