GET /health
Returns basic service status information including the API version.
Request
URL
GET /health
Query Parameters
None.
Example Request
curl -X GET "https://fast-news-with-previews.p.rapidapi.com/health"
Response
200 OK
{
"status": "ok",
"version": "1.0.0"
}
| Field | Type | Description |
|---|---|---|
status | string | Service status. Always "ok" when the server is running. |
version | string | API version number. |
Notes
- Use this endpoint to verify that the API is reachable and to check the version.
- The endpoint always returns HTTP
200when the server is running.