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 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.