add_endpoint
Dynamically add new endpoint configurations to extend blockchain data access across 70+ networks including Ethereum, Solana, Cosmos, and Sui.
Instructions
Dynamically add a new endpoint configuration (for extensibility)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
category | Yes | Category for organization | |
description | Yes | Description of what the endpoint does | |
id | Yes | Unique identifier for the endpoint | |
method | Yes | HTTP method | |
name | Yes | Human-readable name | |
path | Yes | URL path (e.g., "/api/users/:id") |
Input Schema (JSON Schema)
{
"properties": {
"category": {
"description": "Category for organization",
"type": "string"
},
"description": {
"description": "Description of what the endpoint does",
"type": "string"
},
"id": {
"description": "Unique identifier for the endpoint",
"type": "string"
},
"method": {
"description": "HTTP method",
"enum": [
"GET",
"POST",
"PUT",
"DELETE",
"PATCH"
],
"type": "string"
},
"name": {
"description": "Human-readable name",
"type": "string"
},
"path": {
"description": "URL path (e.g., \"/api/users/:id\")",
"type": "string"
}
},
"required": [
"id",
"name",
"path",
"method",
"description",
"category"
],
"type": "object"
}