Skip to content

Overview

echoValue is a set of lightweight backend utilities designed for freelancers and small projects. No server setup, no infrastructure to manage — just a token and an HTTP call.

It provides a small set of focused HTTP utilities for storage, webhooks, DNS inspection, URL metadata, caller-IP lookup, logs, and wallet management.

echoValue is API-first. If you prefer a browser interface for common operations, you can also use the optional dashboard at dash.echovalue.dev.

1. Generate a token (free, includes 100 credits):

Terminal window
curl 'https://api.echovalue.dev/token' -d 'token=new'
# → a1b2c3d4e5f6g7h8i9j0...

2a. Store and retrieve a value:

Terminal window
curl 'https://api.echovalue.dev/kv/default/mykey' \
-H 'x-token: YOUR_TOKEN' \
-d 'hello world'
# → OK
curl 'https://api.echovalue.dev/kv/default/mykey' \
-H 'x-token: YOUR_TOKEN'
# → hello world

2b. Or configure an email-to-webhook bridge:

Terminal window
curl 'https://api.echovalue.dev/webhook' \
-H 'x-token: YOUR_TOKEN' \
-H 'Content-Type: application/json' \
-d '{"webhookId":"default","url":"https://yourdomain.com/webhook"}'
# → {"webhookId":"default","webhook":"https://yourdomain.com/webhook","email":"r_abcd1234@hook.echovalue.dev",...}
# Emails sent to the returned mailbox address now POST to your URL
ServiceDescription
Key-Value StoreStore, retrieve, and delete key-value pairs organized in buckets
WebhookReceive emails at an opaque mailbox address or run scheduled deliveries, while managing each integration through a public webhookId
DNS LookupRun DNS record queries, propagation checks, reverse lookups, SSL inspection, and optional security enrichment
My IPInspect the caller IP address together with geo metadata derived from the request
URL To MetadataFetch metadata and optional summaries for a public URL
LogsInspect your recent API call history
Token ManagementCheck your credit balance and recharge
PageUse it for
API Cheat SheetCompare endpoints, auth, costs, and common use cases
Limits & RetentionCheck size, TTL, retention, and webhook scheduling limits
ErrorsUnderstand status codes and common fixes
OpenAPI SpecificationGenerate clients or import the API into tooling

Machine-readable documentation is available at /llms.txt, /llms-small.txt, and /llms-full.txt. Agent setup files are documented in the installation guide.