Ad2Go Logo
Section 01

Technical
Infrastructure.

Environment Configuration

Every Ad2Go integration begins with a secure handshake. Ensure your environment is configured to point at our neural nodes.

Production Nodeapi.ad2vo.com/v1
Security StandardTLS 1.3 / HMAC

Request 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

CodeReason
401_UNAUTHInvalid Workspace Token or key expired.
402_CREDITInsufficient balance for neural analysis.
429_LIMITRequest frequency exceeds node capacity.