ordinals_searchInscriptions
Search Bitcoin SV ordinals inscriptions by address, content, MIME type, or MAP fields. Filter and retrieve detailed NFT data to explore the ordinals ecosystem efficiently.
Instructions
Searches for Bitcoin SV ordinal inscriptions using flexible criteria. This powerful search tool supports filtering by address, inscription content, MIME type, MAP fields, and other parameters. Results include detailed information about each matched inscription. Ideal for discovering NFTs and exploring the ordinals ecosystem.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
args | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"args": {
"additionalProperties": false,
"properties": {
"address": {
"description": "Bitcoin address",
"type": "string"
},
"dir": {
"default": "desc",
"description": "Sort direction (asc or desc)",
"enum": [
"asc",
"desc"
],
"type": "string"
},
"limit": {
"default": 20,
"description": "Number of results (1-100, default 20)",
"maximum": 100,
"minimum": 1,
"type": "integer"
},
"map": {
"description": "Map field",
"type": "string"
},
"mime": {
"description": "MIME type filter",
"type": "string"
},
"num": {
"description": "Inscription number",
"type": "string"
},
"offset": {
"default": 0,
"description": "Pagination offset",
"minimum": 0,
"type": "integer"
},
"origin": {
"description": "Origin outpoint",
"type": "string"
},
"terms": {
"description": "Search terms",
"type": "string"
}
},
"type": "object"
}
},
"required": [
"args"
],
"type": "object"
}