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.

1

Navigate to the chat interface

Go directly to makeit.pond3r.xyz.

2

Ask your first question

Type a natural language question in the chat box, such as:

What are the top 5 Uniswap pools on Base by volume in the last 24 hours?

or

What's the current price of ETH?
3

Review the response

POND3R will process your question, find the relevant data sources, and return a human-readable answer with visualizations when applicable.

4

Refine your query

You can ask follow-up questions to drill down into the data. For example:

How has the volume changed compared to last week?

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:

1

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.

2

Make your first API request

Use the following code example to make a basic request to the POND3R API:

const axios = require('axios');

async function queryPond3r() {
  try {
    const response = await axios.post('https://api.pond3r.xyz/v1/messages', {
      prompt: 'Get the current price of ETH'
    }, {
      headers: {
        'x-api-key': 'YOUR_API_KEY',
        'Content-Type': 'application/json'
      }
    });
    
    console.log(response.data);
  } catch (error) {
    console.error('Error querying POND3R:', error.response ? error.response.data : error.message);
  }
}

queryPond3r();
3

Parse the response

The API returns JSON responses in this format:

{
  "result": "The current price of ETH is $2088.21 as of March 24, 2024.",
  "status": "success"
}
  • result: Contains the natural language response to your query
  • status: Indicates whether the request was successful

Next steps

Now that you’ve made your first queries with POND3R, you can: