POST
/
v1
/
messages
curl --request POST \
  --url https://api.pond3r.xyz/v1/messages \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '{
  "prompt": "Get the current price of ETH"
}'
{
  "result": "The current price of ETH is $2088.21 as of March 24, 2025.\n",
  "status": "success"
}

Authorizations

x-api-key
string
header
required

Body

application/json
prompt
string
required

A natural language query about cryptocurrency prices

Example:

"Get the current price of ETH"

Response

201
application/json
Price information response
result
string
required

Human-readable response containing price information

status
enum<string>
required

Status of the request

Available options:
success,
error,
pending