Get Started
In this guide we will learn how to use the events blueprint in insight.
- Create a project and navigate to the project settings to get a client ID
- Use insight API with the base URL below.
- To authenticate use your client ID in the
x-client-id
header orclientId
query parameter
https://<chain-id>.insight.thirdweb.com
Once you execute the query above you will receive a result similar to this:
Insight provides several predefined aggregation presets that make it easy to analyze your blockchain data. These presets are available in the Insight Playground, where you can experiment with them using a user-friendly interface.
For a more interactive experience, try out the aggregation presets in the Insight Playground. The Playground allows you to:
- Browse available presets for each endpoint
- See real-time results
- Generate code snippets for your application
- Test different aggregation combinations
Insight also supports querying multiple chains in a single API call. This is useful when you need to retrieve data across different networks without making separate requests.
When querying multiple chains, the response includes a chain_ids
array in the metadata and each item in the data array includes its chain_id
:
Key points about multichain queries:
- Use the base URL
https://insight.thirdweb.com
instead of the chain-specific subdomain - Add multiple
chain
query parameters (e.g.,chain=1&chain=137
) - The response includes a
chain_ids
array andlimit_per_chain
in the metadata - Each item in the data array includes its
chain_id
for identification
For more detailed information and advanced use cases, check out our Multichain Queries documentation.