Test Endpoints
Last updated
Was this helpful?
Test your deployment endpoints directly from the Valohai web app to verify they're working before integrating with production systems.
Open your project
Navigate to the Deployment tab
Select your deployment
Click Test deployment
Choose your endpoint from the drop-down
Provide the required input fields
Click Send request
The response from your inference service appears directly in your browser.
Depending on what your endpoint expects, you can send:
Text/JSON data: Type directly into form fields
Files: Upload images, documents, or other binary data
Multiple fields: Add multiple inputs if your endpoint accepts several parameters
For an image classification endpoint:
Select the predict-digit endpoint
Add a field named image
Change the type to File
Upload a test image
Send the request
Review the prediction response
Production testing: For programmatic testing, use curl or your preferred HTTP client:
Next: Learn how to monitor endpoint performance in production.
Last updated
Was this helpful?
Was this helpful?
curl -X POST https://valohai.cloud/your-org/your-project/deployment/production/predict \
-F "image=@test_image.png"