Quickstart — connect and query in 10 minutes
This guide walks through connecting Axiorq to an Oracle Fusion Cloud environment and running your first natural language query. The same steps apply to SAP, Dynamics 365, and NetSuite — the credential format differs per connector.
1
Create your Axiorq account
Sign up at app.axiorq.com. Verify your work email. Your 30-day trial starts immediately — no credit card required.
2
Add an ERP connection
Navigate to Connections → Add connection → Oracle Fusion Cloud. You will need: your Oracle instance URL, an IDCS Client ID and Secret, and a username with the BI_CONSUMER reporting role. Your Oracle administrator creates the OAuth application in under five minutes.
3
Test the connection
Axiorq runs a health check against your Oracle environment. If the connection is active you will see a green status indicator and a "Last synced" timestamp. If it fails, the error message tells you exactly which credential or permission is missing.
4
Run your first query
Navigate to Ask ERP. Type: "Show me all invoices over $5,000 with no matching purchase order in the last 90 days." Results appear in under 10 seconds.
Authentication — API access
All Axiorq API requests require a Bearer token. Obtain a token by calling the auth endpoint with your API key and secret, which you can generate from Settings → API Keys.
POST https://api.axiorq.com/v1/auth/token
{
"grant_type": "client_credentials",
"api_key": "ak_your_key_here",
"secret": "sk_your_secret_here"
}
// Response
{
"access_token": "eyJhbGci...",
"expires_in": 900,
"token_type": "Bearer"
}
Access tokens expire after 15 minutes. Include the token in all subsequent requests as an Authorization header: Authorization: Bearer <token>
Your first API query
Once authenticated, submit a natural language question to the query endpoint. Specify the connection ID for the ERP system you want to query against.
POST https://api.axiorq.com/v1/query
{
"question": "Show all invoices paid twice to the same vendor in the last 90 days",
"connection_id": "conn_oracle_acmecorp",
"date_range": { "from": "2024-10-01", "to": "2024-12-31" }
}
The full API reference — including all endpoints for anomaly detection, evidence collection, connections management, and reporting — is available in the Nexview PRD and Soxara PRD documents. Contact us at hello@axiorq.com to request developer API access.