Test Connection
GET
/Test connectivity to the API.
About Connection Testing
This endpoint allows you to verify that the KonPro API is accessible and running. It's a simple health check endpoint that doesn't require authentication, making it perfect for testing network connectivity, API availability, and basic integration setup.
Use Cases:
- Verify API server is online and accessible
- Test network connectivity and firewall rules
- Check API version information
- Validate basic integration setup before making authenticated requests
Request History
Log in to see full request history
| TIME | STATUS | USER AGENT |
|---|---|---|
| Make a request to see history. | ||
0 Requests This Month
Request Example
shell
curl -X GET https://api.konpro.ai/ \
-H "Content-Type: application/json"Response
| Field | Type | Description |
|---|---|---|
| status | string | Status indicator (e.g., "ok") indicating the API is running |
| version | string | Current API version (e.g., "1.0.0") |
| message | string | Human-readable message confirming the API is running (e.g., "KonPro API is running") |
Sample Successful Response
json
{
"status": "ok",
"version": "1.0.0",
"message": "KonPro API is running"
}Notes
- This endpoint does not require authentication - no
x-api-keyheader is needed. - This is a simple health check endpoint that verifies the API server is accessible and running.
- The endpoint returns the current API version, which can be useful for compatibility checking.
- Use this endpoint to test network connectivity, firewall rules, and basic API availability before making authenticated requests.
- If this endpoint fails, check your network connection, DNS resolution, and firewall settings.
- This endpoint is useful for monitoring and health checks in automated systems.
- For error descriptions, see Error Responses.