Skip to main content
POST
/
v1
/
nyomi
/
respond
curl --request POST \ --url https://releasing-soon.com/v1/nyomi/respond \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "message": "Explain this wallet in plain English.", "walletAddress": "9xQeWvG816bUx9EPfQ5D9b8fRGyJitf8F6f4fH6QJjAo" } '
{
  "answer": "<string>",
  "sources": [
    {
      "type": "wallet",
      "id": "<string>",
      "label": "<string>"
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.nshield.org/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Use a Nova developer API key in the Authorization header. Demo playground keys should be restricted, rate-limited, and domain-scoped.

Body

application/json
message
string
required

The plain-language question to answer.

Maximum string length: 4000
Example:

"Explain this wallet in plain English."

walletAddress
string
required

Public wallet address used as the user context for the answer.

Example:

"9xQeWvG816bUx9EPfQ5D9b8fRGyJitf8F6f4fH6QJjAo"

tokenMint
string

Optional token mint to focus the answer.

Example:

"So11111111111111111111111111111111111111112"

Response

Nyomi answer.

answer
string
required
sources
object[]