Veltix API
Integrate Veltix into your applications with our powerful REST API
API Reference
Authentication
All API requests require authentication using an API key. Include your API key in the Authorization header of your requests.
curl -H "Authorization: Bearer YOUR_API_KEY" \
https://api.veltix.app/v1/projects
Note: You can generate API keys from your account settings.
Projects
List Projects
Retrieve a list of all your projects.
GET
https://api.veltix.app/v1/projects
Create Project
Create a new project.
POST
https://api.veltix.app/v1/projects
{"name": "My Project", "description": "Project description"}
Dashboards
Get Dashboard
Retrieve a specific dashboard by ID.
GET
https://api.veltix.app/v1/dashboards/{id}
Data Sources
Connect Data Source
Connect a new data source to your project.
POST
https://api.veltix.app/v1/data-sources
{"type": "database", "connection_string": "..."}
Need Help?
Check out our comprehensive API documentation or contact our support team for assistance with integration.