API Reference
The iSearchFrom API is a REST API built with NestJS. All endpoints return JSON responses.
Base URL
Section titled “Base URL”http://localhost:3000/v1Authentication
Section titled “Authentication”API requests require either a session cookie (for browser-based access) or an API key header.
API Key
Section titled “API Key”curl -H "X-API-Key: your-api-key" https://api.example.com/v1/searchesCommon Response Format
Section titled “Common Response Format”Success
Section titled “Success”{ "data": [...], "pagination": { "total": 100, "hasMore": true, "nextCursor": "abc123" }}{ "code": "ERROR_CODE", "message": "Human-readable error message"}