{
  "openapi": "3.0.0",
  "info": {
    "title": "Ordinals & Runes API API",
    "description": "Fetch Ordinals Inscriptions and Runes using a JSON-RPC interface.",
    "version": "1.0.0",
    "contact": {
      "email": "support@quicknode.com",
      "url": "https://support.quicknode.com/hc/en-us"
    }
  },
  "servers": [
    {
      "url": "https://{quicknode_endpoint}",
      "description": "Your Quicknode endpoint",
      "variables": {
        "quicknode_endpoint": {
          "default": "your-endpoint.quiknode.pro",
          "description": "Your Quicknode endpoint URL"
        }
      }
    }
  ],
  "tags": [
    {
      "name": "JSON-RPC",
      "description": "See request body examples for the available methods you can call on this add-on"
    }
  ],
  "paths": {
    "/rpc": {
      "post": {
        "summary": "JSON-RPC methods for https://ordinals-json-rpc-3e2621491353.herokuapp.com/rpc",
        "description": "Available methods:\n• ord_getRune: Fetch a rune.\n• ord_getInscriptions: Returns a paginated list of inscriptions.\n• ord_getInscription: Fetches an inscription by ID.\n• ord_getInscriptionRecursive: Fetches an inscription using the recursive endpoint. Recursive endpoints are whitelisted endpoints that allow access to on-chain data, including the content of other inscriptions. Learn more at https://docs.ordinals.com/inscriptions/recursion.html\n• ord_getBlockInfo: Get block info by block height using recursion API.\n• ord_getInscriptionsByBlock: Gets the inscriptions in a block by passing a block height (paginated).\n• ord_getOutput: Gets the output for an outpoint.\n• ord_getSat: Gets the sat.\n• ord_getSatRecursive: Get the sat using the recursive endpoint. Learn more about recursive endpoints at https://docs.ordinals.com/inscriptions/recursion.html\n• ord_getSatAtIndex: Gets the sat at the specified index.\n• ord_getStatus: Get the status of the Ordinals API.\n• ord_getBlockHash: Fetches the block hash using a block height\n• ord_getCurrentBlockHash: Fetches the last block hash.\n• ord_getRunes: Gets a list of runes.\n• ord_getTx: Fetch a transaction.\n• ord_getContent: Get the content of the inscription.\n• ord_getCurrentBlockHeight: Fetches the last block height\n• ord_getCurrentBlockTime: Fetches the last block time.\n• ord_getMetadata: Fetches the metadata for an inscription.\n• ord_getCollections: Fetches a list of collection (paginated).\n• ord_getChildren: Gets a paginated list of children for the Inscription (using inscription ID)",
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "oneOf": [
                  {
                    "type": "object",
                    "properties": {
                      "jsonrpc": {
                        "type": "string",
                        "enum": [
                          "2.0"
                        ]
                      },
                      "method": {
                        "type": "string",
                        "enum": [
                          "ord_getRune"
                        ]
                      },
                      "id": {
                        "type": "integer",
                        "example": 1
                      },
                      "params": {
                        "type": "array",
                        "description": "Positional parameters",
                        "items": {
                          "description": "Parameter value (can be string, number, boolean, object, etc.)"
                        },
                        "example": [
                          "843268:2998"
                        ]
                      }
                    },
                    "required": [
                      "jsonrpc",
                      "method",
                      "id",
                      "params"
                    ]
                  },
                  {
                    "type": "object",
                    "properties": {
                      "jsonrpc": {
                        "type": "string",
                        "enum": [
                          "2.0"
                        ]
                      },
                      "method": {
                        "type": "string",
                        "enum": [
                          "ord_getInscriptions"
                        ]
                      },
                      "id": {
                        "type": "integer",
                        "example": 1
                      },
                      "params": {
                        "type": "array",
                        "description": "Positional parameters",
                        "items": {
                          "description": "Parameter value (can be string, number, boolean, object, etc.)"
                        },
                        "example": [
                          2
                        ]
                      }
                    },
                    "required": [
                      "jsonrpc",
                      "method",
                      "id",
                      "params"
                    ]
                  },
                  {
                    "type": "object",
                    "properties": {
                      "jsonrpc": {
                        "type": "string",
                        "enum": [
                          "2.0"
                        ]
                      },
                      "method": {
                        "type": "string",
                        "enum": [
                          "ord_getInscription"
                        ]
                      },
                      "id": {
                        "type": "integer",
                        "example": 1
                      },
                      "params": {
                        "type": "array",
                        "description": "Positional parameters",
                        "items": {
                          "description": "Parameter value (can be string, number, boolean, object, etc.)"
                        },
                        "example": [
                          "a860baeecae8c2d9fb95f09608d3b3e2bbaf207f25a6361e0d07a326906f8be6i0"
                        ]
                      }
                    },
                    "required": [
                      "jsonrpc",
                      "method",
                      "id",
                      "params"
                    ]
                  },
                  {
                    "type": "object",
                    "properties": {
                      "jsonrpc": {
                        "type": "string",
                        "enum": [
                          "2.0"
                        ]
                      },
                      "method": {
                        "type": "string",
                        "enum": [
                          "ord_getInscriptionRecursive"
                        ]
                      },
                      "id": {
                        "type": "integer",
                        "example": 1
                      },
                      "params": {
                        "type": "array",
                        "description": "Positional parameters",
                        "items": {
                          "description": "Parameter value (can be string, number, boolean, object, etc.)"
                        },
                        "example": [
                          "a860baeecae8c2d9fb95f09608d3b3e2bbaf207f25a6361e0d07a326906f8be6i0"
                        ]
                      }
                    },
                    "required": [
                      "jsonrpc",
                      "method",
                      "id",
                      "params"
                    ]
                  },
                  {
                    "type": "object",
                    "properties": {
                      "jsonrpc": {
                        "type": "string",
                        "enum": [
                          "2.0"
                        ]
                      },
                      "method": {
                        "type": "string",
                        "enum": [
                          "ord_getBlockInfo"
                        ]
                      },
                      "id": {
                        "type": "integer",
                        "example": 1
                      },
                      "params": {
                        "type": "array",
                        "description": "Positional parameters",
                        "items": {
                          "description": "Parameter value (can be string, number, boolean, object, etc.)"
                        },
                        "example": [
                          843263
                        ]
                      }
                    },
                    "required": [
                      "jsonrpc",
                      "method",
                      "id",
                      "params"
                    ]
                  },
                  {
                    "type": "object",
                    "properties": {
                      "jsonrpc": {
                        "type": "string",
                        "enum": [
                          "2.0"
                        ]
                      },
                      "method": {
                        "type": "string",
                        "enum": [
                          "ord_getInscriptionsByBlock"
                        ]
                      },
                      "id": {
                        "type": "integer",
                        "example": 1
                      },
                      "params": {
                        "type": "array",
                        "description": "Positional parameters",
                        "items": {
                          "description": "Parameter value (can be string, number, boolean, object, etc.)"
                        },
                        "example": [
                          843263,
                          0
                        ]
                      }
                    },
                    "required": [
                      "jsonrpc",
                      "method",
                      "id",
                      "params"
                    ]
                  },
                  {
                    "type": "object",
                    "properties": {
                      "jsonrpc": {
                        "type": "string",
                        "enum": [
                          "2.0"
                        ]
                      },
                      "method": {
                        "type": "string",
                        "enum": [
                          "ord_getOutput"
                        ]
                      },
                      "id": {
                        "type": "integer",
                        "example": 1
                      },
                      "params": {
                        "type": "array",
                        "description": "Positional parameters",
                        "items": {
                          "description": "Parameter value (can be string, number, boolean, object, etc.)"
                        },
                        "example": [
                          "bc4c30829a9564c0d58e6287195622b53ced54a25711d1b86be7cd3a70ef61ed:0"
                        ]
                      }
                    },
                    "required": [
                      "jsonrpc",
                      "method",
                      "id",
                      "params"
                    ]
                  },
                  {
                    "type": "object",
                    "properties": {
                      "jsonrpc": {
                        "type": "string",
                        "enum": [
                          "2.0"
                        ]
                      },
                      "method": {
                        "type": "string",
                        "enum": [
                          "ord_getSat"
                        ]
                      },
                      "id": {
                        "type": "integer",
                        "example": 1
                      },
                      "params": {
                        "type": "array",
                        "description": "Positional parameters",
                        "items": {
                          "description": "Parameter value (can be string, number, boolean, object, etc.)"
                        },
                        "example": [
                          125866034480298
                        ]
                      }
                    },
                    "required": [
                      "jsonrpc",
                      "method",
                      "id",
                      "params"
                    ]
                  },
                  {
                    "type": "object",
                    "properties": {
                      "jsonrpc": {
                        "type": "string",
                        "enum": [
                          "2.0"
                        ]
                      },
                      "method": {
                        "type": "string",
                        "enum": [
                          "ord_getSatRecursive"
                        ]
                      },
                      "id": {
                        "type": "integer",
                        "example": 1
                      },
                      "params": {
                        "type": "array",
                        "description": "Positional parameters",
                        "items": {
                          "description": "Parameter value (can be string, number, boolean, object, etc.)"
                        },
                        "example": [
                          125866034480298,
                          0
                        ]
                      }
                    },
                    "required": [
                      "jsonrpc",
                      "method",
                      "id",
                      "params"
                    ]
                  },
                  {
                    "type": "object",
                    "properties": {
                      "jsonrpc": {
                        "type": "string",
                        "enum": [
                          "2.0"
                        ]
                      },
                      "method": {
                        "type": "string",
                        "enum": [
                          "ord_getSatAtIndex"
                        ]
                      },
                      "id": {
                        "type": "integer",
                        "example": 1
                      },
                      "params": {
                        "type": "array",
                        "description": "Positional parameters",
                        "items": {
                          "description": "Parameter value (can be string, number, boolean, object, etc.)"
                        },
                        "example": [
                          125866034480298,
                          0
                        ]
                      }
                    },
                    "required": [
                      "jsonrpc",
                      "method",
                      "id",
                      "params"
                    ]
                  },
                  {
                    "type": "object",
                    "properties": {
                      "jsonrpc": {
                        "type": "string",
                        "enum": [
                          "2.0"
                        ]
                      },
                      "method": {
                        "type": "string",
                        "enum": [
                          "ord_getStatus"
                        ]
                      },
                      "id": {
                        "type": "integer",
                        "example": 1
                      }
                    },
                    "required": [
                      "jsonrpc",
                      "method",
                      "id"
                    ]
                  },
                  {
                    "type": "object",
                    "properties": {
                      "jsonrpc": {
                        "type": "string",
                        "enum": [
                          "2.0"
                        ]
                      },
                      "method": {
                        "type": "string",
                        "enum": [
                          "ord_getBlockHash"
                        ]
                      },
                      "id": {
                        "type": "integer",
                        "example": 1
                      },
                      "params": {
                        "type": "array",
                        "description": "Positional parameters",
                        "items": {
                          "description": "Parameter value (can be string, number, boolean, object, etc.)"
                        },
                        "example": [
                          843395
                        ]
                      }
                    },
                    "required": [
                      "jsonrpc",
                      "method",
                      "id",
                      "params"
                    ]
                  },
                  {
                    "type": "object",
                    "properties": {
                      "jsonrpc": {
                        "type": "string",
                        "enum": [
                          "2.0"
                        ]
                      },
                      "method": {
                        "type": "string",
                        "enum": [
                          "ord_getCurrentBlockHash"
                        ]
                      },
                      "id": {
                        "type": "integer",
                        "example": 1
                      }
                    },
                    "required": [
                      "jsonrpc",
                      "method",
                      "id"
                    ]
                  },
                  {
                    "type": "object",
                    "properties": {
                      "jsonrpc": {
                        "type": "string",
                        "enum": [
                          "2.0"
                        ]
                      },
                      "method": {
                        "type": "string",
                        "enum": [
                          "ord_getRunes"
                        ]
                      },
                      "id": {
                        "type": "integer",
                        "example": 1
                      },
                      "params": {
                        "type": "array",
                        "description": "Positional parameters",
                        "items": {
                          "description": "Parameter value (can be string, number, boolean, object, etc.)"
                        },
                        "example": [
                          0
                        ]
                      }
                    },
                    "required": [
                      "jsonrpc",
                      "method",
                      "id",
                      "params"
                    ]
                  },
                  {
                    "type": "object",
                    "properties": {
                      "jsonrpc": {
                        "type": "string",
                        "enum": [
                          "2.0"
                        ]
                      },
                      "method": {
                        "type": "string",
                        "enum": [
                          "ord_getTx"
                        ]
                      },
                      "id": {
                        "type": "integer",
                        "example": 1
                      },
                      "params": {
                        "type": "array",
                        "description": "Positional parameters",
                        "items": {
                          "description": "Parameter value (can be string, number, boolean, object, etc.)"
                        },
                        "example": [
                          "d74335d2bbcd62f5f83697ea0c172de47858f33353f542ccd6627d0a23b3ed44"
                        ]
                      }
                    },
                    "required": [
                      "jsonrpc",
                      "method",
                      "id",
                      "params"
                    ]
                  },
                  {
                    "type": "object",
                    "properties": {
                      "jsonrpc": {
                        "type": "string",
                        "enum": [
                          "2.0"
                        ]
                      },
                      "method": {
                        "type": "string",
                        "enum": [
                          "ord_getContent"
                        ]
                      },
                      "id": {
                        "type": "integer",
                        "example": 1
                      },
                      "params": {
                        "type": "array",
                        "description": "Positional parameters",
                        "items": {
                          "description": "Parameter value (can be string, number, boolean, object, etc.)"
                        },
                        "example": [
                          "d74335d2bbcd62f5f83697ea0c172de47858f33353f542ccd6627d0a23b3ed44i7"
                        ]
                      }
                    },
                    "required": [
                      "jsonrpc",
                      "method",
                      "id",
                      "params"
                    ]
                  },
                  {
                    "type": "object",
                    "properties": {
                      "jsonrpc": {
                        "type": "string",
                        "enum": [
                          "2.0"
                        ]
                      },
                      "method": {
                        "type": "string",
                        "enum": [
                          "ord_getCurrentBlockHeight"
                        ]
                      },
                      "id": {
                        "type": "integer",
                        "example": 1
                      }
                    },
                    "required": [
                      "jsonrpc",
                      "method",
                      "id"
                    ]
                  },
                  {
                    "type": "object",
                    "properties": {
                      "jsonrpc": {
                        "type": "string",
                        "enum": [
                          "2.0"
                        ]
                      },
                      "method": {
                        "type": "string",
                        "enum": [
                          "ord_getCurrentBlockTime"
                        ]
                      },
                      "id": {
                        "type": "integer",
                        "example": 1
                      }
                    },
                    "required": [
                      "jsonrpc",
                      "method",
                      "id"
                    ]
                  },
                  {
                    "type": "object",
                    "properties": {
                      "jsonrpc": {
                        "type": "string",
                        "enum": [
                          "2.0"
                        ]
                      },
                      "method": {
                        "type": "string",
                        "enum": [
                          "ord_getMetadata"
                        ]
                      },
                      "id": {
                        "type": "integer",
                        "example": 1
                      },
                      "params": {
                        "type": "array",
                        "description": "Positional parameters",
                        "items": {
                          "description": "Parameter value (can be string, number, boolean, object, etc.)"
                        },
                        "example": [
                          "35b66389b44535861c44b2b18ed602997ee11db9a30d384ae89630c9fc6f011fi3"
                        ]
                      }
                    },
                    "required": [
                      "jsonrpc",
                      "method",
                      "id",
                      "params"
                    ]
                  },
                  {
                    "type": "object",
                    "properties": {
                      "jsonrpc": {
                        "type": "string",
                        "enum": [
                          "2.0"
                        ]
                      },
                      "method": {
                        "type": "string",
                        "enum": [
                          "ord_getCollections"
                        ]
                      },
                      "id": {
                        "type": "integer",
                        "example": 1
                      },
                      "params": {
                        "type": "array",
                        "description": "Positional parameters",
                        "items": {
                          "description": "Parameter value (can be string, number, boolean, object, etc.)"
                        },
                        "example": [
                          2
                        ]
                      }
                    },
                    "required": [
                      "jsonrpc",
                      "method",
                      "id",
                      "params"
                    ]
                  },
                  {
                    "type": "object",
                    "properties": {
                      "jsonrpc": {
                        "type": "string",
                        "enum": [
                          "2.0"
                        ]
                      },
                      "method": {
                        "type": "string",
                        "enum": [
                          "ord_getChildren"
                        ]
                      },
                      "id": {
                        "type": "integer",
                        "example": 1
                      },
                      "params": {
                        "type": "array",
                        "description": "Positional parameters",
                        "items": {
                          "description": "Parameter value (can be string, number, boolean, object, etc.)"
                        },
                        "example": [
                          "36f0272e28bf6595199d02cb29013b91d9b9b9e250d270f32270506dcd1262bai0",
                          0
                        ]
                      }
                    },
                    "required": [
                      "jsonrpc",
                      "method",
                      "id",
                      "params"
                    ]
                  }
                ],
                "discriminator": {
                  "propertyName": "method"
                }
              },
              "examples": {
                "ord_getRune": {
                  "summary": "Fetch a rune.",
                  "value": {
                    "jsonrpc": "2.0",
                    "method": "ord_getRune",
                    "id": 1,
                    "params": [
                      "843268:2998"
                    ]
                  }
                },
                "ord_getInscriptions": {
                  "summary": "Returns a paginated list of inscriptions.",
                  "value": {
                    "jsonrpc": "2.0",
                    "method": "ord_getInscriptions",
                    "id": 1,
                    "params": [
                      2
                    ]
                  }
                },
                "ord_getInscription": {
                  "summary": "Fetches an inscription by ID.",
                  "value": {
                    "jsonrpc": "2.0",
                    "method": "ord_getInscription",
                    "id": 1,
                    "params": [
                      "a860baeecae8c2d9fb95f09608d3b3e2bbaf207f25a6361e0d07a326906f8be6i0"
                    ]
                  }
                },
                "ord_getInscriptionRecursive": {
                  "summary": "Fetches an inscription using the recursive endpoint. Recursive endpoints are whitelisted endpoints that allow access to on-chain data, including the content of other inscriptions. Learn more at https://docs.ordinals.com/inscriptions/recursion.html",
                  "value": {
                    "jsonrpc": "2.0",
                    "method": "ord_getInscriptionRecursive",
                    "id": 1,
                    "params": [
                      "a860baeecae8c2d9fb95f09608d3b3e2bbaf207f25a6361e0d07a326906f8be6i0"
                    ]
                  }
                },
                "ord_getBlockInfo": {
                  "summary": "Get block info by block height using recursion API.",
                  "value": {
                    "jsonrpc": "2.0",
                    "method": "ord_getBlockInfo",
                    "id": 1,
                    "params": [
                      843263
                    ]
                  }
                },
                "ord_getInscriptionsByBlock": {
                  "summary": "Gets the inscriptions in a block by passing a block height (paginated).",
                  "value": {
                    "jsonrpc": "2.0",
                    "method": "ord_getInscriptionsByBlock",
                    "id": 1,
                    "params": [
                      843263,
                      0
                    ]
                  }
                },
                "ord_getOutput": {
                  "summary": "Gets the output for an outpoint.",
                  "value": {
                    "jsonrpc": "2.0",
                    "method": "ord_getOutput",
                    "id": 1,
                    "params": [
                      "bc4c30829a9564c0d58e6287195622b53ced54a25711d1b86be7cd3a70ef61ed:0"
                    ]
                  }
                },
                "ord_getSat": {
                  "summary": "Gets the sat.",
                  "value": {
                    "jsonrpc": "2.0",
                    "method": "ord_getSat",
                    "id": 1,
                    "params": [
                      125866034480298
                    ]
                  }
                },
                "ord_getSatRecursive": {
                  "summary": "Get the sat using the recursive endpoint. Learn more about recursive endpoints at https://docs.ordinals.com/inscriptions/recursion.html",
                  "value": {
                    "jsonrpc": "2.0",
                    "method": "ord_getSatRecursive",
                    "id": 1,
                    "params": [
                      125866034480298,
                      0
                    ]
                  }
                },
                "ord_getSatAtIndex": {
                  "summary": "Gets the sat at the specified index.",
                  "value": {
                    "jsonrpc": "2.0",
                    "method": "ord_getSatAtIndex",
                    "id": 1,
                    "params": [
                      125866034480298,
                      0
                    ]
                  }
                },
                "ord_getStatus": {
                  "summary": "Get the status of the Ordinals API.",
                  "value": {
                    "jsonrpc": "2.0",
                    "method": "ord_getStatus",
                    "id": 1
                  }
                },
                "ord_getBlockHash": {
                  "summary": "Fetches the block hash using a block height",
                  "value": {
                    "jsonrpc": "2.0",
                    "method": "ord_getBlockHash",
                    "id": 1,
                    "params": [
                      843395
                    ]
                  }
                },
                "ord_getCurrentBlockHash": {
                  "summary": "Fetches the last block hash.",
                  "value": {
                    "jsonrpc": "2.0",
                    "method": "ord_getCurrentBlockHash",
                    "id": 1
                  }
                },
                "ord_getRunes": {
                  "summary": "Gets a list of runes.",
                  "value": {
                    "jsonrpc": "2.0",
                    "method": "ord_getRunes",
                    "id": 1,
                    "params": [
                      0
                    ]
                  }
                },
                "ord_getTx": {
                  "summary": "Fetch a transaction.",
                  "value": {
                    "jsonrpc": "2.0",
                    "method": "ord_getTx",
                    "id": 1,
                    "params": [
                      "d74335d2bbcd62f5f83697ea0c172de47858f33353f542ccd6627d0a23b3ed44"
                    ]
                  }
                },
                "ord_getContent": {
                  "summary": "Get the content of the inscription.",
                  "value": {
                    "jsonrpc": "2.0",
                    "method": "ord_getContent",
                    "id": 1,
                    "params": [
                      "d74335d2bbcd62f5f83697ea0c172de47858f33353f542ccd6627d0a23b3ed44i7"
                    ]
                  }
                },
                "ord_getCurrentBlockHeight": {
                  "summary": "Fetches the last block height",
                  "value": {
                    "jsonrpc": "2.0",
                    "method": "ord_getCurrentBlockHeight",
                    "id": 1
                  }
                },
                "ord_getCurrentBlockTime": {
                  "summary": "Fetches the last block time.",
                  "value": {
                    "jsonrpc": "2.0",
                    "method": "ord_getCurrentBlockTime",
                    "id": 1
                  }
                },
                "ord_getMetadata": {
                  "summary": "Fetches the metadata for an inscription.",
                  "value": {
                    "jsonrpc": "2.0",
                    "method": "ord_getMetadata",
                    "id": 1,
                    "params": [
                      "35b66389b44535861c44b2b18ed602997ee11db9a30d384ae89630c9fc6f011fi3"
                    ]
                  }
                },
                "ord_getCollections": {
                  "summary": "Fetches a list of collection (paginated).",
                  "value": {
                    "jsonrpc": "2.0",
                    "method": "ord_getCollections",
                    "id": 1,
                    "params": [
                      2
                    ]
                  }
                },
                "ord_getChildren": {
                  "summary": "Gets a paginated list of children for the Inscription (using inscription ID)",
                  "value": {
                    "jsonrpc": "2.0",
                    "method": "ord_getChildren",
                    "id": 1,
                    "params": [
                      "36f0272e28bf6595199d02cb29013b91d9b9b9e250d270f32270506dcd1262bai0",
                      0
                    ]
                  }
                }
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "JSON-RPC response",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "jsonrpc": {
                      "type": "string",
                      "enum": [
                        "2.0"
                      ]
                    },
                    "id": {
                      "type": "integer"
                    },
                    "result": {
                      "description": "Method result"
                    },
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "integer"
                        },
                        "message": {
                          "type": "string"
                        },
                        "data": {
                          "description": "Additional error data"
                        }
                      }
                    }
                  },
                  "required": [
                    "jsonrpc",
                    "id"
                  ]
                }
              }
            }
          }
        },
        "externalDocs": {
          "url": "https://www.quicknode.com/docs/bitcoin/ord_getRune",
          "description": "Documentation: ord_getRune: https://www.quicknode.com/docs/bitcoin/ord_getRune, ord_getInscriptions: https://www.quicknode.com/docs/bitcoin/ord_getInscriptions, ord_getInscription: https://www.quicknode.com/docs/bitcoin/ord_getInscription, ord_getInscriptionRecursive: https://www.quicknode.com/docs/bitcoin/ord_getInscriptionRecursive, ord_getBlockInfo: https://www.quicknode.com/docs/bitcoin/ord_getBlockInfo, ord_getInscriptionsByBlock: https://www.quicknode.com/docs/bitcoin/ord_getInscriptionsByBlock, ord_getOutput: https://www.quicknode.com/docs/bitcoin/ord_getOutput, ord_getSat: https://www.quicknode.com/docs/bitcoin/ord_getSat, ord_getSatRecursive: https://www.quicknode.com/docs/bitcoin/ord_getSatRecursive, ord_getSatAtIndex: https://www.quicknode.com/docs/bitcoin/ord_getSatAtIndex, ord_getStatus: https://www.quicknode.com/docs/bitcoin/ord_getStatus, ord_getBlockHash: https://www.quicknode.com/docs/bitcoin/ord_getBlockHash, ord_getCurrentBlockHash: https://www.quicknode.com/docs/bitcoin/ord_getCurrentBlockHash, ord_getRunes: https://www.quicknode.com/docs/bitcoin/ord_getRunes, ord_getTx: https://www.quicknode.com/docs/bitcoin/ord_getTx, ord_getContent: https://www.quicknode.com/docs/bitcoin/ord_getContent, ord_getCurrentBlockHeight: https://www.quicknode.com/docs/bitcoin/ord_getCurrentBlockHeight, ord_getCurrentBlockTime: https://www.quicknode.com/docs/bitcoin/ord_getCurrentBlockTime, ord_getMetadata: https://www.quicknode.com/docs/bitcoin/ord_getMetadata, ord_getCollections: https://www.quicknode.com/docs/bitcoin/ord_getCollections, ord_getChildren: https://www.quicknode.com/docs/bitcoin/ord_getChildren"
        },
        "tags": [
          "JSON-RPC"
        ]
      }
    }
  },
  "externalDocs": {
    "description": "Support Documentation",
    "url": "https://support.quicknode.com/hc/en-us"
  }
}