<

Zap the Lea

The Lea can be zapped. Try it out!

Zap now

API

# application/json
curl -X POST https://becutewith.me/zap \
  -H "Content-Type: application/json"  \
  -d '{"sender":"funny creature","message":"zap zap :3"}'

# application/x-www-form-urlencoded
curl -X POST https://becutewith.me/zap \
  -H "Content-Type: application/x-www-form-urlencoded" \
  --data-urlencode 'sender=funny creature' \
  --data-urlencode 'message=zap zap :3'

# multipart/form-data
curl -X POST https://becutewith.me/zap \
  -F 'sender=funny creature' \
  -F 'message=zap zap :3'