Get Started with AI Documentation

To get started with our AI Documentation system and request API access, please contact our support team for inquiries.

Contact Email

support@deep-intra.com

AI Documentation

Comprehensive documentation for the AI and inventory integration system.

Authentication
All API endpoints require authentication with your API key and secret

Getting Your API Keys

To access the API, you need to generate API keys from your dashboard. Each customer account can have multiple API keys for different applications.

Generate API Keys

Please enter your customer secret to generate API keys. This secret is provided to you after signing a contract.

API Key

Production
api_key_••••••••••••••••••••••

API Secret

Production
api_secret_••••••••••••••••••••••

API Key

Development
api_key_dev_••••••••••••••••••

Using Authentication

curl -X POST https://api.example.com/api/documents/upload \
  -H "Content-Type: multipart/form-data" \
  -H "X-API-Key: your_api_key" \
  -H "X-API-Secret: your_api_secret" \
  -F "file=@document.pdf" \
  -F "type=invoice"