You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Non-pinned IPFS files are subject to regular garbage collection and will be removed unless pinned.
92
92
* We allow maximum of 100 queued pins per IPFS user.
93
93
94
-
## Midnight Indexer API
95
-
96
-
The Midnight Indexer API exposes a GraphQL API that enables clients to query and subscribe to blockchain data—blocks, transactions, contracts, and wallet-related events—indexed from the Midnight blockchain.
97
-
98
-
The deployed version is **v3**. For the complete GraphQL schema specification, see the [Midnight Indexer GraphQL Schema](https://github.com/midnightntwrk/midnight-indexer/blob/release/3.0.0/indexer-api/graphql/schema-v3.graphql).
99
-
100
-
### Quick Start
101
-
102
-
Make your first API call:
103
-
```bash
104
-
curl -X POST https://midnight-{network}.blockfrost.io/api/v0 \
Include your project ID as the `project_id` HTTP header.
171
-
172
-
When using WebSocket in the browser (which doesn't support custom headers), include your project ID as a subprotocol by prefixing it with `project_id_`:
173
-
```javascript
174
-
new WebSocket("wss://midnight-preview.blockfrost.io/api/v0/ws", [
For more information, see the [Midnight Indexer API documentation](https://docs.midnight.network/develop/reference/midnight-api/midnight-indexer).
242
-
243
94
## Errors
244
95
245
96
### HTTP Status codes
@@ -382,6 +233,156 @@ info:
382
233
</tr>
383
234
</tbody>
384
235
</table>
236
+
237
+
238
+
## Midnight Indexer API
239
+
240
+
241
+
The Midnight Indexer API exposes a GraphQL API that enables clients to query and subscribe to blockchain data—blocks, transactions, contracts, and wallet-related events—indexed from the Midnight blockchain.
242
+
243
+
The deployed version is **v3**.
244
+
245
+
[](./midnight/)
246
+
247
+
For the raw GraphQL schema specification, see the [Midnight Indexer GraphQL Schema](https://github.com/midnightntwrk/midnight-indexer/blob/release/3.0.0/indexer-api/graphql/schema-v3.graphql).
248
+
249
+
### Quick Start
250
+
251
+
Make your first API call:
252
+
```bash
253
+
curl -X POST https://midnight-{network}.blockfrost.io/api/v0 \
Include your project ID as the `project_id` HTTP header.
319
+
320
+
When using WebSocket in the browser (which doesn't support custom headers), include your project ID as a subprotocol by prefixing it with `project_id_`:
321
+
```javascript
322
+
new WebSocket("wss://midnight-preview.blockfrost.io/api/v0/ws", [
0 commit comments