The only developer platform you'll ever need.
fetch('api.dev.io/v1', { method: 'POST', body: JSON.stringify(data) })
import requests requests.post( 'api.dev.io/v1', json=data )
curl -X POST \ https://api.dev.io/v1 \ -d '{"key":"value"}'
const deploy = require('@dev/cli'); deploy.push({ env: 'production' })
from dev import deploy deploy.push( env='production' )
curl -X POST \ https://api.dev.io/deploy \ -H "Auth: token"
monitor.track('event', { user: userId, action: 'click' })
monitor.track('event', user=user_id, action='click' )
curl -X POST \ https://api.dev.io/track \ -d '{"event":"click"}'