Retrieve the schema information for the available tables in the SQL API’s indexed data.
This includes table names, column definitions, data types, and indexed fields.
A JWT signed using your CDP API Key Secret, encoded in base64. Refer to the Generate Bearer Token section of our Authentication docs for information on how to generate your Bearer Token.
The name of the database to query. Defaults to "base" when not specified.
base, base_sepolia Get the schema for a specific table.
Schema information retrieved successfully.
Schema information for available blockchain data tables.
List of available tables.
[
{
"database": "base",
"table": "events",
"columns": [
{
"name": "event_signature",
"type": "String",
"nullable": false,
"description": "The signature of the decoded event log.",
"indexOrder": 0
}
]
}
]