# Inscriptions

## Get Batch Inscription Information

> Returns detailed information about several inscriptions (up to 100)

```json
{"openapi":"3.0.0","info":{"title":"Ordinals & Runes Compatibility API","version":"3.0"},"servers":[{"url":"https://api.ordnull.site/v3","description":"Production server"}],"security":[{"ApiKeyAuth":[]}],"components":{"securitySchemes":{"ApiKeyAuth":{"type":"apiKey","in":"header","name":"x-api-Key"}},"schemas":{"QueryItem":{"description":"A query item that can be either string or number","oneOf":[{"type":"string"},{"type":"integer"}]},"InscriptionInfo":{"type":"object","properties":{"query":{"type":"string"},"result":{"oneOf":[{"$ref":"#/components/schemas/InscriptionDetail"},{"type":"array","items":{"$ref":"#/components/schemas/InscriptionDetail"}}]}}},"InscriptionDetail":{"type":"object","properties":{"inscription_name":{"type":"string","nullable":true},"inscription_id":{"type":"string"},"inscription_number":{"type":"integer"},"metadata":{"type":"object","nullable":true},"wallet":{"type":"string"},"mime_type":{"type":"string"},"media_length":{"type":"integer"},"genesis_ts":{"type":"integer"},"genesis_height":{"type":"integer"},"genesis_fee":{"type":"integer"},"output_value":{"type":"integer"},"satpoint":{"type":"string"},"last_sale_price":{"type":"integer","nullable":true},"collection_name":{"type":"string","nullable":true},"collection_slug":{"type":"string","nullable":true},"last_transfer_block_height":{"type":"integer"},"utxo":{"type":"string"},"parent_ids":{"type":"array","items":{"type":"string"}},"genesis_block_hash":{"type":"string"},"collection_floor_price":{"type":"integer","nullable":true},"min_price":{"type":"integer","nullable":true},"ordswap_price":{"type":"integer","nullable":true},"magiceden_price":{"type":"integer","nullable":true},"ordinalswallet_price":{"type":"integer","nullable":true},"gammaio_price":{"type":"integer","nullable":true},"nostr_price":{"type":"integer","nullable":true},"odynals_price":{"type":"integer","nullable":true},"unisat_price":{"type":"integer","nullable":true},"ordinalsmarket_price":{"type":"integer","nullable":true},"okx_price":{"type":"integer","nullable":true},"content_url":{"type":"string"},"bis_url":{"type":"string"},"render_url":{"type":"string","nullable":true},"byte_size":{"type":"integer"},"bitmap_number":{"type":"integer","nullable":true},"delegate":{"type":"object","nullable":true,"properties":{"delegate_id":{"type":"string"},"render_url":{"type":"string"},"mime_type":{"type":"string"},"content_url":{"type":"string"},"bis_url":{"type":"string"}}},"is_brc20":{"type":"boolean"},"brc20":{"type":"object","nullable":true,"properties":{"tick":{"type":"string"},"decimals":{"type":"integer"},"op":{"type":"string"},"amount":{"type":"string","nullable":true},"formatted_amount":{"type":"string","nullable":true},"is_valid_for_transfer":{"type":"boolean"},"min_listed_unit_price":{"type":"string","nullable":true},"min_listed_unit_price_okx":{"type":"string","nullable":true},"min_listed_unit_price_unisat":{"type":"string","nullable":true}}}}},"Error":{"type":"object","properties":{"error":{"type":"string","description":"Error message"}}}}},"paths":{"/inscription/batch_info":{"post":{"summary":"Get Batch Inscription Information","description":"Returns detailed information about several inscriptions (up to 100)","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","required":["queries"],"properties":{"queries":{"type":"array","maxItems":100,"description":"List of inscription id, inscription number or location (txid:index). All items must be of the same type","items":{"$ref":"#/components/schemas/QueryItem"}}}}}}},"responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"type":"object","properties":{"data":{"type":"array","items":{"$ref":"#/components/schemas/InscriptionInfo"}},"block_height":{"type":"integer"}}}}}},"429":{"description":"Rate limit exceeded","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}}}}}}
```
