Introduction

The GI2Tech API is organized around REST. Our API has predictable resource-oriented URLs, accepts form-encoded request bodies, returns JSON-encoded responses, and uses standard HTTP response codes, authentication, and verbs. We guarantee a p95 latency threshold under 45ms across our main LATAM and US-East endpoints.

Base URLs:

Production: https://api.gi2.tech/
Sandbox: https://sandbox.api.gi2.tech/

Authentication

The GI2Tech API relies on standard OAuth 2.0 Bearer Tokens constructed via an API Key provided in your corporate dashboard. Use your secret key to authenticate your requests. Do not share your secret API keys in publicly accessible areas such as GitHub, client-side code, and so forth.

// Standard Bearer Header
Authorization: Bearer sk_live_8a992bc9...

Webhooks & Asynchronous Events

For operations that require deep processing—like AdIntel network mapping or AgentOS conversational processing—GI2Tech implements a webhook-first architecture. You submit the payload, receive an immediate 202 Accepted, and our clusters will POST the computed result to your registered webhook URL once finished.

{ "event_type": "agentos.task.completed", "payload_signature": "sha256=2a98b...", "data": { ... } }

AgentOS Engine

Deploys autonomous AI agents capable of resolving complex reasoning tasks, executing sub-routines via your internal APIs, and maintaining context across multi-step workflows.

POST /v3/agentos/dispatch

curl -X POST https://api.gi2.tech/v3/agentos/dispatch \ -H "Authorization: Bearer ${GI2_KEY}" \ -d '{ "agent_role": "l1_customer_support", "context": "User asking for refund on ticket #8892", "allowed_tools": ["fetch_order", "issue_refund"] }'

AdIntel Engine

Injects behavioral scoring into your advertising funnels. Feed us your raw traffic parameters, and the engine predicts the LTV (Life-Time Value) probability within 30ms, allowing you to dynamically adjust your CAC bids.

POST /v3/adintel/score_click

curl -X POST https://api.gi2.tech/v3/adintel/score_click \ -H "Authorization: Bearer ${GI2_KEY}" \ -d '{ "utm_source": "meta_ads", "click_pattern_vector": [0.4, 0.9, 0.1, 0.05], "time_on_page_ms": 12500 }'

OpsIQ Engine

Analyze unstructured operational data logs from ERP or CRM systems to identify supply-chain bottlenecks and workflow inefficiencies via LLM-powered clustering.

POST /v3/opsiq/analyze_logs

{ "status": "processing", "job_id": "opq_99x312", "webhook_url": "https://your-api.com/webhooks/opsiq" }

FraudShield Evaluate

Evaluates a payment transaction heuristically and returns an explicit decision (BLOCK, REVIEW, ALLOW) within 40ms.

POST /v2/transactions/analyze

{ "status": "success", "risk_decision": "BLOCK", "risk_score": 93.5, "ttl_ms": 31 }

Access the Development Sandbox

If you are evaluating GI2Tech for your enterprise, request limited API keys to run tests on our staging cluster.

Request Sandbox Access