{
  "info": {
    "name": "Spydra — mcp.ai",
    "description": "REST API for the Spydra MCP. Set {{apiKey}} to a workspace key (sk_live_…) created at https://mcp.ai/settings/api-keys.",
    "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
  },
  "auth": {
    "type": "bearer",
    "bearer": [
      {
        "key": "token",
        "value": "{{apiKey}}",
        "type": "string"
      }
    ]
  },
  "variable": [
    {
      "key": "baseUrl",
      "value": "https://api.mcp.ai/api/spydra",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "spydra_get_asset",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/asset",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "asset"
          ]
        },
        "description": "Return detailed information for one OpenRWA asset, optionally including token or token-sale projections.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"asset_id\": \"\",\n  \"projection\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "spydra_get_asset_status_counts",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/asset/status/counts",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "asset",
            "status",
            "counts"
          ]
        },
        "description": "Return asset counts grouped by publication status for the connected OpenRWA token store.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "spydra_list_asset_tokens",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/asset/tokens",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "asset",
            "tokens"
          ]
        },
        "description": "Return the tokens associated with one OpenRWA asset.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"asset_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "spydra_list_assets",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/assets",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "assets"
          ]
        },
        "description": "Return one numbered page of draft or published assets in the connected OpenRWA token store.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"limit\": 0,\n  \"status\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "spydra_list_chains",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/chains",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "chains"
          ]
        },
        "description": "Return supported OpenRWA blockchain networks and their public network, currency, status, and fee attributes. test_mode=true is verified to return testnets; the provider currently does not reliably tre",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"test_mode\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "spydra_list_countries",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/countries",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "countries"
          ]
        },
        "description": "Return the complete OpenRWA country reference list, including ISO codes, currencies, languages, and dialing codes.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "spydra_list_investor_tokens",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/investor/tokens",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "investor",
            "tokens"
          ]
        },
        "description": "Return one numbered page of tokens held or invested in by a specific OpenRWA investor.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"limit\": 0,\n  \"test_mode\": false,\n  \"investor_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "spydra_list_investor_transactions",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/investor/transactions",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "investor",
            "transactions"
          ]
        },
        "description": "Return one numbered page of mint, payout, burn, or token-creation transactions for a specific OpenRWA investor.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"limit\": 0,\n  \"test_mode\": false,\n  \"investor_id\": \"\",\n  \"transaction_types\": \"\",\n  \"transaction_statuses\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "spydra_list_investors",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/investors",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "investors"
          ]
        },
        "description": "Return one numbered page of investors registered with the connected OpenRWA token store.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"limit\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "spydra_list_token_sales",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/token/sales",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "token",
            "sales"
          ]
        },
        "description": "Search and filter one numbered page of OpenRWA token sales available through the connected store.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"sort\": \"\",\n  \"term\": \"\",\n  \"limit\": 0,\n  \"test_mode\": false,\n  \"sale_status\": 0,\n  \"investment_type\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}