{
    "openapi": "3.1.0",
    "info": {
        "title": "The Best Blockchain Public Data API",
        "version": "2.6.8",
        "description": "Curated public blockchain intelligence including technical network quality and separate Participation Intelligence. Market context and participation ease do not alter TBB technical scoring."
    },
    "servers": [
        {
            "url": "https://thebestblockchain.com"
        }
    ],
    "paths": {
        "/data/networks.json": {
            "get": {
                "summary": "List all tracked networks",
                "responses": {
                    "200": {
                        "description": "TBB network dataset"
                    }
                }
            }
        },
        "/data/networks/{slug}.json": {
            "get": {
                "summary": "Get one tracked network",
                "parameters": [
                    {
                        "name": "slug",
                        "in": "path",
                        "required": true,
                        "schema": {
                            "type": "string"
                        }
                    }
                ],
                "responses": {
                    "200": {
                        "description": "Network dataset"
                    },
                    "404": {
                        "description": "Network not found"
                    }
                }
            }
        },
        "/api/search.php": {
            "get": {
                "summary": "Search TBB networks and destinations",
                "parameters": [
                    {
                        "name": "q",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string",
                            "maxLength": 80
                        }
                    }
                ],
                "responses": {
                    "200": {
                        "description": "Search results"
                    }
                }
            }
        },
        "/api/pulse.php": {
            "get": {
                "summary": "Read current TBB Network Pulse",
                "responses": {
                    "200": {
                        "description": "Network Pulse"
                    }
                }
            }
        }
    }
}