Create Token
POST https://api.echovalue.dev/token
Creates a new API token. No authentication is required.
Request
Section titled “Request”Body (application/x-www-form-urlencoded):
| Parameter | Value | Description |
|---|---|---|
token | new | Must be the literal string new |
Response
Section titled “Response”200 OK — the new token as plain text.
a1b2c3d4e5f6g7h8i9j0k1l2m3n4o5p6Status Codes
Section titled “Status Codes”| Status | Meaning |
|---|---|
200 | Token created |
400 | Missing or invalid token parameter |
Examples
Section titled “Examples”curl 'https://api.echovalue.dev/token' \ -d 'token=new'