SYNTHVIRTUAL://API/V1
SYNTHVIRTUAL INTELLIGENCE API
AI synthesis for any Base token.
Free. No signup. Open to everyone.
POST https://synthterminal.app/api/v1/synthesize
◉ LIVE DEMO — REAL CALL
REQUEST · JSON BODY
tokenstringrequired · symbol (AEON) or contract (0x...)modestringanalyze | narrative | thesis · default thesischainstringbase only · default base
RESPONSE · LIVE SHAPE
Awaiting first live call…
{ }◈ CODE EXAMPLES
// CURL
curl -X POST https://synthterminal.app/api/v1/synthesize \
-H "Content-Type: application/json" \
-d '{"token":"AEON","mode":"thesis"}'// JAVASCRIPT
const res = await fetch('https://synthterminal.app/api/v1/synthesize', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({ token: 'AEON', mode: 'thesis' })
})
const { analysis, data } = await res.json()// PYTHON
import requests
r = requests.post(
'https://synthterminal.app/api/v1/synthesize',
json={'token': 'AEON', 'mode': 'thesis'}
)
print(r.json()['analysis'])RATE LIMITS
No key3 calls / dayX-API-Key20 calls / day (free)