Skip to Content

API Overview

API & Integrations OdooBot 26 views
Introduction to the VedTech API for monitoring and managing your SaaS instances programmatically.

API Overview

The VedTech API allows you to programmatically access information about your Odoo instances, monitor resource usage, and integrate with your existing tools and workflows.

Current API Version: v1
Base URL: https://vedtechsolutions.com/api/v1/

Available APIs

APIDescriptionAccess Level
Resource Usage API Monitor CPU, RAM, storage usage for instances Admin / API Key
Instance Status API Check instance status and health Admin / API Key

Authentication

API requests require authentication using an API key passed in the header:

X-API-Key: your_api_key_here

Getting Your API Key

  1. Log in to your VedTech account
  2. Navigate to My Account > API Settings
  3. Click Generate API Key
  4. Copy and securely store your key
Security: Never share your API key or commit it to version control. Treat it like a password.

Rate Limits

PlanRequests/MinuteRequests/Day
Starter301,000
Professional605,000
Enterprise120Unlimited

Response Format

All API responses are returned in JSON format:

{
  "success": true,
  "data": { ... },
  "timestamp": "2026-01-02T12:00:00Z"
}

Error Handling

Error responses include an error code and message:

{
  "success": false,
  "error": {
    "code": "UNAUTHORIZED",
    "message": "Invalid or missing API key"
  }
}

Common Error Codes

CodeHTTP StatusDescription
UNAUTHORIZED401Invalid or missing API key
FORBIDDEN403Insufficient permissions
NOT_FOUND404Resource not found
RATE_LIMITED429Too many requests
SERVER_ERROR500Internal server error

Related Documentation

Was this article helpful?
Search Articles
Still need help?

Our support team is ready to assist you.

Create Ticket
Skip to main content