Technical
Infrastructure.
Environment Configuration
Every Ad2Go integration begins with a secure handshake. Ensure your environment is configured to point at our neural nodes.
Production Node
api.ad2vo.com/v1Security Standard
TLS 1.3 / HMACRequest Protocol
Submitting an asset for analysis requires a specific JSON payload. The engine supports high-depth traversal and intelligent caching.
POST Payload{
"site_url": "https://example.com",
"audit_type": "NEURAL_FULL",
"priority": "system_high",
"webhook": "https://callback.io"
}
1
System validates the workspace credit balance before initiation.
2
Engine assigns a global trace-id for the request lifetime.
Callback Implementation
Once the neural audit is finalized, Ad2Go will ping your specified webhook. Verify the signature to ensure data integrity.
// Webhook Receiver Logic
async function handleAd2GoCallback(req) {
const signature = req.headers['x-ad2go-signature'];
const payload = req.body;
if (verifySignature(payload, signature)) {
await processResults(payload.violations);
return { status: "ACK" };
}
}
Timeout
30,000 MS
Retries
5 Attempts
System Status Codes
| Code | Reason |
|---|---|
| 401_UNAUTH | Invalid Workspace Token or key expired. |
| 402_CREDIT | Insufficient balance for neural analysis. |
| 429_LIMIT | Request frequency exceeds node capacity. |