analyzeNip19
Decode and analyze NIP-19 entities or hex strings to identify their type and extract detailed contents, simplifying interaction with the Nostr social network.
Instructions
Analyze any NIP-19 entity or hex string to understand its type and contents
Input Schema
Name | Required | Description | Default |
---|---|---|---|
input | Yes | The NIP-19 entity or hex string to analyze |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"input": {
"description": "The NIP-19 entity or hex string to analyze",
"type": "string"
}
},
"required": [
"input"
],
"type": "object"
}