Test Endpoints
Test your deployment endpoints directly from the Valohai web app to verify they're working before integrating with production systems.
Test from the UI
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.
Input types
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
Example workflow
For an image classification endpoint:
Select the
predict-digitendpointAdd a field named
imageChange 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:
curl -X POST https://valohai.cloud/your-org/your-project/deployment/production/predict \
-F "image=@test_image.png"Next: Learn how to monitor endpoint performance in production.
Last updated
Was this helpful?
