Getting Started
Start using POND3R in under 5 minutes
Getting Started with POND3R
This guide will help you quickly get started with POND3R’s web app and API to access Web3 data through natural language.
Using the Web3 Data Chat
The Web3 Data Chat is the easiest way to start exploring blockchain data without any technical setup.
Navigate to the chat interface
Go directly to makeit.pond3r.xyz.
Ask your first question
Type a natural language question in the chat box, such as:
or
Review the response
POND3R will process your question, find the relevant data sources, and return a human-readable answer with visualizations when applicable.
Refine your query
You can ask follow-up questions to drill down into the data. For example:
POND3R maintains context from previous questions to provide more relevant answers.
Connecting to the API
For developers looking to integrate POND3R’s capabilities into their applications:
Get your API key
Navigate to “Settings” > “API Keys” in your POND3R dashboard and click “Generate New Key”. Give your key a name (e.g., “Development Key”) and click “Create”.
Keep your API key secure and never expose it in client-side code. We recommend using environment variables to store your key.
Submit your first query
Use the following code example to submit a query to the POND3R API:
Check the processing status
After submitting your query, you’ll receive a processingId
. Use this ID to check the status of your request:
Handle the response
The API returns responses in this format:
The status endpoint can return the following statuses:
PENDING
: The message has been received and is waiting to be processedPROCESSING
: The message is currently being processedFINISHED
: Processing is complete and the result is availableERROR
: An error occurred during processing
Always implement proper error handling and retry logic. We recommend using a polling interval of 2-3 seconds between status checks.
Next steps
Now that you’ve made your first queries with POND3R, you can: