{
  "openapi": "3.0.0",
  "info": {
    "title": "Address Risk Scores API API",
    "description": "Quickly assess wallet risk levels with comprehensive on-chain data and entity insights.",
    "version": "1.0.0",
    "contact": {
      "email": "support@misttrack.io",
      "url": "https://docs.misttrack.io/support/getting-help"
    }
  },
  "servers": [
    {
      "url": "https://{quicknode_endpoint}",
      "description": "Your Quicknode endpoint",
      "variables": {
        "quicknode_endpoint": {
          "default": "your-endpoint.quiknode.pro",
          "description": "Your Quicknode endpoint URL"
        }
      }
    }
  ],
  "tags": [
    {
      "name": "JSON-RPC",
      "description": "See request body examples for the available methods you can call on this add-on"
    }
  ],
  "paths": {
    "/v1/rpc_request": {
      "post": {
        "summary": "JSON-RPC methods for https://openapi.misttrack.io/v1/rpc_request",
        "description": "Available methods:\n• mt_addressLabel: With robust partnerships across the blockchain ecosystem, we've compiled a diverse catalog of address labels, ranging from exchanges, projects, and wallets, to mining pools and token contracts, offering a comprehensive reference for our users.\n• mt_addressRiskScore: A risk score we assign to each address based on the identity of the entity behind the address and its on-chain transactions. These factors are then compared with our extensive database of known malicious addresses to provide a comprehensive risk assessment.",
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "oneOf": [
                  {
                    "type": "object",
                    "properties": {
                      "jsonrpc": {
                        "type": "string",
                        "enum": [
                          "2.0"
                        ]
                      },
                      "method": {
                        "type": "string",
                        "enum": [
                          "mt_addressLabel"
                        ]
                      },
                      "id": {
                        "type": "integer",
                        "example": 1
                      },
                      "params": {
                        "type": "array",
                        "description": "Positional parameters",
                        "items": {
                          "description": "Parameter value (can be string, number, boolean, object, etc.)"
                        },
                        "example": [
                          "0x9225ce4129f21ae0369a21f8c056c70a7d31e831"
                        ]
                      }
                    },
                    "required": [
                      "jsonrpc",
                      "method",
                      "id",
                      "params"
                    ]
                  },
                  {
                    "type": "object",
                    "properties": {
                      "jsonrpc": {
                        "type": "string",
                        "enum": [
                          "2.0"
                        ]
                      },
                      "method": {
                        "type": "string",
                        "enum": [
                          "mt_addressRiskScore"
                        ]
                      },
                      "id": {
                        "type": "integer",
                        "example": 1
                      },
                      "params": {
                        "type": "array",
                        "description": "Positional parameters",
                        "items": {
                          "description": "Parameter value (can be string, number, boolean, object, etc.)"
                        },
                        "example": [
                          "0x9225ce4129f21ae0369a21f8c056c70a7d31e831"
                        ]
                      }
                    },
                    "required": [
                      "jsonrpc",
                      "method",
                      "id",
                      "params"
                    ]
                  }
                ],
                "discriminator": {
                  "propertyName": "method"
                }
              },
              "examples": {
                "mt_addressLabel": {
                  "summary": "With robust partnerships across the blockchain ecosystem, we've compiled a diverse catalog of address labels, ranging from exchanges, projects, and wallets, to mining pools and token contracts, offering a comprehensive reference for our users.",
                  "value": {
                    "jsonrpc": "2.0",
                    "method": "mt_addressLabel",
                    "id": 1,
                    "params": [
                      "0x9225ce4129f21ae0369a21f8c056c70a7d31e831"
                    ]
                  }
                },
                "mt_addressRiskScore": {
                  "summary": "A risk score we assign to each address based on the identity of the entity behind the address and its on-chain transactions. These factors are then compared with our extensive database of known malicious addresses to provide a comprehensive risk assessment.",
                  "value": {
                    "jsonrpc": "2.0",
                    "method": "mt_addressRiskScore",
                    "id": 1,
                    "params": [
                      "0x9225ce4129f21ae0369a21f8c056c70a7d31e831"
                    ]
                  }
                }
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "JSON-RPC response",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "jsonrpc": {
                      "type": "string",
                      "enum": [
                        "2.0"
                      ]
                    },
                    "id": {
                      "type": "integer"
                    },
                    "result": {
                      "description": "Method result"
                    },
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "integer"
                        },
                        "message": {
                          "type": "string"
                        },
                        "data": {
                          "description": "Additional error data"
                        }
                      }
                    }
                  },
                  "required": [
                    "jsonrpc",
                    "id"
                  ]
                }
              }
            }
          }
        },
        "externalDocs": {
          "url": "https://docs.misttrack.io/openapi/quicknode-add-on-docs#address-label-rpc",
          "description": "Documentation: mt_addressLabel: https://docs.misttrack.io/openapi/quicknode-add-on-docs#address-label-rpc, mt_addressRiskScore: https://docs.misttrack.io/openapi/quicknode-add-on-docs#address-risk-score-rpc"
        },
        "tags": [
          "JSON-RPC"
        ]
      }
    }
  },
  "externalDocs": {
    "description": "Support Documentation",
    "url": "https://docs.misttrack.io/support/getting-help"
  }
}