{
  "openapi": "3.0.0",
  "info": {
    "description": "OpenAPI specification for the entire Messari API",
    "title": "Messari API - Funding V1",
    "version": "1.0.0"
  },
  "servers": [
    {
      "description": "Messari API",
      "url": "https://api.messari.io"
    }
  ],
  "security": [],
  "paths": {
    "/funding/v1/funds": {
      "get": {
        "description": "Lookup Funds given a set of filters.",
        "operationId": "getFunds",
        "parameters": [
          {
            "in": "query",
            "name": "limit",
            "schema": {
              "format": "int64",
              "type": "integer",
              "default": 10
            }
          },
          {
            "in": "query",
            "name": "page",
            "schema": {
              "format": "int64",
              "type": "integer",
              "default": 0
            }
          },
          {
            "description": "Comma-separated list of fund manager (orgs, persons, projects) uuids.",
            "in": "query",
            "name": "managerId",
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            }
          },
          {
            "description": "Filter by minimum amount raised in USD. Will return funds which have raised more than the specified amount.",
            "in": "query",
            "name": "raisedAmountMin",
            "schema": {
              "format": "double",
              "type": "number",
              "example": 1000000,
              "default": 1000000
            }
          },
          {
            "description": "Filter by maximum amount raised in USD. Will return funds which have raised less than the specified amount.",
            "in": "query",
            "name": "raisedAmountMax",
            "schema": {
              "format": "double",
              "type": "number",
              "example": 100000000,
              "default": 100000000
            }
          },
          {
            "description": "Filter by funds announced before the specified date.",
            "in": "query",
            "name": "announcedBefore",
            "schema": {
              "format": "date-time",
              "type": "string",
              "example": "2025-12-31T23:59:59Z",
              "default": "2025-12-31T23:59:59Z"
            }
          },
          {
            "description": "Filter by funds announced after the specified date.",
            "in": "query",
            "name": "announcedAfter",
            "schema": {
              "format": "date-time",
              "type": "string",
              "example": "2025-01-01T00:00:00Z",
              "default": "2025-01-01T00:00:00Z"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "properties": {
                    "data": {
                      "items": {
                        "$ref": "#/components/schemas/Fund"
                      },
                      "type": "array"
                    },
                    "error": {
                      "type": "string"
                    },
                    "metadata": {
                      "$ref": "#/components/schemas/Pagination"
                    }
                  },
                  "required": [
                    "data"
                  ],
                  "type": "object"
                },
                "example": {
                  "error": null,
                  "data": [
                    {
                      "id": "09800226-54be-4486-b3bd-39954c768eef",
                      "name": "Maximum Frequency Ventures",
                      "announcements": [],
                      "announcementDate": "2025-10-14T10:33:17.906Z",
                      "amountRaisedUSD": 50000000
                    },
                    {
                      "id": "cdf0b533-90a7-4689-bdfa-955a83461d5c",
                      "name": "Builder Fund",
                      "announcements": [
                        {
                          "url": "https://www.coindesk.com/business/2025/10/08/yzi-labs-introduces-usd1b-fund-for-bnb-chain-projects"
                        }
                      ],
                      "announcementDate": "2025-10-08T13:15:23.023Z",
                      "amountRaisedUSD": 1000000000
                    },
                    {
                      "id": "12f4b80b-9df4-41ca-a990-8b0db4a6dee9",
                      "name": "Web3 Fund",
                      "announcements": [
                        {
                          "url": "https://www.theblock.co/post/373128/lisk-launches-15-million-fund-web3-projects-africa-latin-america-southeast-asia"
                        }
                      ],
                      "announcementDate": "2025-10-02T15:42:10.02Z",
                      "amountRaisedUSD": 15000000
                    },
                    {
                      "id": "49cda9e0-b9cc-4d07-be9d-e3f42a99d3e4",
                      "name": "Stablecoin Infrastructure Fund",
                      "announcements": [
                        {
                          "url": "https://www.foresightventures.com/details?details_id=32&details_type=news"
                        }
                      ],
                      "announcementDate": "2025-10-01T16:15:37.604Z",
                      "amountRaisedUSD": 50000000
                    },
                    {
                      "id": "0925d77d-dc4d-48a9-b4b1-cd7c241f1e56",
                      "name": "Fund III",
                      "announcements": [
                        {
                          "url": "https://x.com/archetypevc/status/1970473968122405129"
                        },
                        {
                          "url": "https://fortune.com/crypto/2025/09/23/new-york-focused-crypto-venture-firm-archetype-raises-100-million-for-third-fund/"
                        }
                      ],
                      "announcementDate": "2025-09-23T13:43:38.287Z",
                      "amountRaisedUSD": 100000000
                    }
                  ],
                  "metadata": {
                    "limit": 10,
                    "page": 1,
                    "totalRows": 1108,
                    "totalPages": 111
                  }
                }
              }
            },
            "description": "Default response"
          },
          "400": {
            "content": {
              "application/json": {
                "schema": {
                  "properties": {
                    "data": {},
                    "error": {
                      "type": "string"
                    }
                  },
                  "required": [
                    "data"
                  ],
                  "type": "object"
                }
              }
            },
            "description": "Bad Request"
          },
          "403": {
            "content": {
              "application/json": {
                "schema": {
                  "properties": {
                    "data": {},
                    "error": {
                      "type": "string"
                    }
                  },
                  "required": [
                    "data"
                  ],
                  "type": "object"
                }
              }
            },
            "description": "Forbidden"
          },
          "500": {
            "content": {
              "application/json": {
                "schema": {
                  "properties": {
                    "data": {},
                    "error": {
                      "type": "string"
                    }
                  },
                  "required": [
                    "data"
                  ],
                  "type": "object"
                }
              }
            },
            "description": "Internal Server Error"
          }
        },
        "security": [
          {
            "apiKey": []
          }
        ],
        "summary": "GetFunds",
        "tags": [
          "funding/Fund"
        ]
      }
    },
    "/funding/v1/funds/managers": {
      "get": {
        "description": "Lookup the Managers of a set of Funds defined by the filters. Filters are applied to the Funds, and then their Managers are returned.",
        "operationId": "getFundManagers",
        "parameters": [
          {
            "in": "query",
            "name": "limit",
            "schema": {
              "format": "int64",
              "type": "integer",
              "default": 10
            }
          },
          {
            "in": "query",
            "name": "page",
            "schema": {
              "format": "int64",
              "type": "integer",
              "default": 0
            }
          },
          {
            "description": "Comma-separated list of fund manager (orgs, persons, projects) uuids.",
            "in": "query",
            "name": "managerId",
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            }
          },
          {
            "description": "Filter by minimum amount raised in USD. Will return funds which have raised more than the specified amount.",
            "in": "query",
            "name": "raisedAmountMin",
            "schema": {
              "format": "double",
              "type": "number",
              "example": 1000000,
              "default": 1000000
            }
          },
          {
            "description": "Filter by maximum amount raised in USD. Will return funds which have raised less than the specified amount.",
            "in": "query",
            "name": "raisedAmountMax",
            "schema": {
              "format": "double",
              "type": "number",
              "example": 100000000,
              "default": 100000000
            }
          },
          {
            "description": "Filter by funds announced before the specified date.",
            "in": "query",
            "name": "announcedBefore",
            "schema": {
              "format": "date-time",
              "type": "string",
              "example": "2025-12-31T23:59:59Z",
              "default": "2025-12-31T23:59:59Z"
            }
          },
          {
            "description": "Filter by funds announced after the specified date.",
            "in": "query",
            "name": "announcedAfter",
            "schema": {
              "format": "date-time",
              "type": "string",
              "example": "2025-01-01T00:00:00Z",
              "default": "2025-01-01T00:00:00Z"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "properties": {
                    "data": {
                      "items": {
                        "$ref": "#/components/schemas/FundManagers"
                      },
                      "type": "array"
                    },
                    "error": {
                      "type": "string"
                    },
                    "metadata": {
                      "$ref": "#/components/schemas/Pagination"
                    }
                  },
                  "required": [
                    "data"
                  ],
                  "type": "object"
                },
                "example": {
                  "error": null,
                  "data": [
                    {
                      "fundId": "09800226-54be-4486-b3bd-39954c768eef",
                      "organizations": [
                        {
                          "id": "f09d21fd-1755-41f0-87e6-b7adcac00802",
                          "name": "Maximum Frequency Ventures",
                          "foundedDate": "2025-01-01T00:00:00Z",
                          "description": "Maximum Frequency Ventures (MFV) is a crypto venture capital firm and company\u2011creation engine focused on investing in and building blockchain projects.",
                          "category": "Investment Management",
                          "sector": "Venture Capital",
                          "tags": [],
                          "location": "New York City, New York, United States",
                          "links": [
                            {
                              "name": "Crunchbase",
                              "type": "Analytics",
                              "url": "https://www.crunchbase.com/organization/maximum-frequency-ventures"
                            },
                            {
                              "name": "LinkedIn",
                              "type": "Social",
                              "url": "https://www.linkedin.com/company/mf-xyz/"
                            },
                            {
                              "name": "Pitchbook",
                              "type": "Analytics",
                              "url": "https://pitchbook.com/profiles/investor/1153042-66"
                            },
                            {
                              "name": "Twitter",
                              "type": "Social",
                              "url": "https://x.com/mf__xyz"
                            },
                            {
                              "name": "Website",
                              "type": "Website",
                              "url": "https://www.mf.xyz/"
                            }
                          ]
                        }
                      ],
                      "projects": null,
                      "persons": null
                    },
                    {
                      "fundId": "cdf0b533-90a7-4689-bdfa-955a83461d5c",
                      "organizations": [
                        {
                          "id": "d5e13ab4-f127-4a7f-9629-0918720909f9",
                          "name": "YZi Labs (formerly Binance Labs)",
                          "foundedDate": "2017-01-01T00:00:00Z",
                          "description": "YZi Labs is a venture capital firm investing in ventures across Web3, artificial intelligence, and biotechnology sectors. Formerly known as Binance Labs, it operates independently, focusing on empowering founders building long-term solutions.",
                          "category": "Investment Management",
                          "sector": "Venture Capital",
                          "tags": [],
                          "location": "San Francisco, California, United States",
                          "links": [
                            {
                              "name": "CB Insights",
                              "type": "Analytics",
                              "url": "https://www.cbinsights.com/investor/binance-labs"
                            },
                            {
                              "name": "Crunchbase",
                              "type": "Analytics",
                              "url": "https://www.crunchbase.com/organization/binance-labs-b05e"
                            },
                            {
                              "name": "LinkedIn",
                              "type": "Social",
                              "url": "https://www.linkedin.com/company/yzilabs/"
                            },
                            {
                              "name": "Pitchbook",
                              "type": "Analytics",
                              "url": "https://pitchbook.com/profiles/investor/230407-21"
                            },
                            {
                              "name": "Twitter",
                              "type": "Social",
                              "url": "https://x.com/yzilabs"
                            }
                          ]
                        }
                      ],
                      "projects": null,
                      "persons": null
                    },
                    {
                      "fundId": "12f4b80b-9df4-41ca-a990-8b0db4a6dee9",
                      "organizations": [
                        {
                          "id": "6c4b35fb-c071-4a3c-a401-fd71940bd9f8",
                          "name": "Lisk",
                          "foundedDate": "2016-01-01T00:00:00Z",
                          "description": "Lisk is a platform that facilitates the development of decentralized applications (dApps) and tokens on the blockchain. It aims to make crypto and Web3 accessible to everyone by providing an easy-to-use development environment and wallet. Lisk uses a proof-of-stake consensus algorithm to secure its network and offers staking rewards for token holders. It is also working on interoperability to bridge with other platforms like Ethereum. The LSK token powers the Lisk platform and is available for trading on major exchanges.",
                          "tags": [
                            "Proof-of-Stake"
                          ],
                          "location": "Zug, Zug, Switzerland",
                          "links": [
                            {
                              "name": "LinkedIn",
                              "type": "Social",
                              "url": "https://www.linkedin.com/company/lisk"
                            },
                            {
                              "name": "Pitchbook",
                              "type": "Analytics",
                              "url": "https://pitchbook.com/profiles/company/177447-25"
                            },
                            {
                              "name": "Twitter",
                              "type": "Social",
                              "url": "https://twitter.com/LiskHQ"
                            },
                            {
                              "name": "Website",
                              "type": "Website",
                              "url": "https://lisk.com/"
                            }
                          ]
                        }
                      ],
                      "projects": null,
                      "persons": null
                    },
                    {
                      "fundId": "49cda9e0-b9cc-4d07-be9d-e3f42a99d3e4",
                      "organizations": [
                        {
                          "id": "61880d3a-bc1b-4d7f-8d94-db4cc5a9fd65",
                          "name": "Foresight Ventures",
                          "description": "Foresight Ventures is a crypto-focused investment firm supporting the growth of blockchain technology and Web3. They invest in various stages from seed to growth, focusing on sectors such as DeFi, NFTs, metaverse, infrastructure, and applications. Foresight Ventures leverages a global network to provide strategic support, funding, and advisory services, aiming to foster innovation and the development of decentralized ecosystems. Their portfolio includes projects that drive technological advancements and enhance the adoption of decentralized networks.",
                          "category": "Investment Management",
                          "sector": "Venture Capital",
                          "tags": [],
                          "location": "Singapore, Central Singapore Community Development Council, Singapore",
                          "links": [
                            {
                              "name": "Crunchbase",
                              "type": "Analytics",
                              "url": "https://www.crunchbase.com/organization/foresight-ventures-e03b"
                            },
                            {
                              "name": "LinkedIn",
                              "type": "Social",
                              "url": "https://www.linkedin.com/company/foresight-ven/"
                            },
                            {
                              "name": "Pitchbook",
                              "type": "Analytics",
                              "url": "https://pitchbook.com/profiles/investor/495494-29"
                            },
                            {
                              "name": "Twitter",
                              "type": "Social",
                              "url": "https://twitter.com/ForesightVen"
                            },
                            {
                              "name": "Website",
                              "type": "Website",
                              "url": "https://www.foresightventures.com/"
                            }
                          ]
                        }
                      ],
                      "projects": null,
                      "persons": null
                    },
                    {
                      "fundId": "0925d77d-dc4d-48a9-b4b1-cd7c241f1e56",
                      "organizations": [
                        {
                          "id": "e53c9af2-b519-4b1d-ad87-f1c2f8cce386",
                          "name": "Archetype",
                          "foundedDate": "2013-01-01T00:00:00Z",
                          "description": "Archetype is a venture capital firm investing in decentralized crypto projects.",
                          "category": "Investment Management",
                          "sector": "Venture Capital",
                          "tags": [],
                          "location": "New York City, New York, United States",
                          "links": [
                            {
                              "name": "CB Insights",
                              "type": "Analytics",
                              "url": "https://www.cbinsights.com/investor/archetype-2"
                            },
                            {
                              "name": "LinkedIn",
                              "type": "Social",
                              "url": "https://www.linkedin.com/company/archetypevc/"
                            },
                            {
                              "name": "Medium",
                              "type": "Resources",
                              "url": "https://medium.com/@archetype_"
                            },
                            {
                              "name": "Pitchbook",
                              "type": "Analytics",
                              "url": "https://pitchbook.com/profiles/investor/489426-94"
                            },
                            {
                              "name": "Twitter",
                              "type": "Social",
                              "url": "https://twitter.com/archetypevc"
                            }
                          ]
                        }
                      ],
                      "projects": null,
                      "persons": null
                    }
                  ],
                  "metadata": {
                    "limit": 10,
                    "page": 1,
                    "totalRows": 1212,
                    "totalPages": 122
                  }
                }
              }
            },
            "description": "Default response"
          },
          "400": {
            "content": {
              "application/json": {
                "schema": {
                  "properties": {
                    "data": {},
                    "error": {
                      "type": "string"
                    }
                  },
                  "required": [
                    "data"
                  ],
                  "type": "object"
                }
              }
            },
            "description": "Bad Request"
          },
          "403": {
            "content": {
              "application/json": {
                "schema": {
                  "properties": {
                    "data": {},
                    "error": {
                      "type": "string"
                    }
                  },
                  "required": [
                    "data"
                  ],
                  "type": "object"
                }
              }
            },
            "description": "Forbidden"
          },
          "500": {
            "content": {
              "application/json": {
                "schema": {
                  "properties": {
                    "data": {},
                    "error": {
                      "type": "string"
                    }
                  },
                  "required": [
                    "data"
                  ],
                  "type": "object"
                }
              }
            },
            "description": "Internal Server Error"
          }
        },
        "security": [
          {
            "apiKey": []
          }
        ],
        "summary": "GetFundManagers",
        "tags": [
          "funding/Fund"
        ]
      }
    },
    "/funding/v1/mergers-and-acquisitions": {
      "get": {
        "description": "Lookup M&A Deals given a set of filters.",
        "operationId": "getAcquisitionDeals",
        "parameters": [
          {
            "in": "query",
            "name": "limit",
            "schema": {
              "format": "int64",
              "type": "integer",
              "default": 10
            }
          },
          {
            "in": "query",
            "name": "page",
            "schema": {
              "format": "int64",
              "type": "integer",
              "default": 0
            }
          },
          {
            "description": "Comma-separated list of acquiring entity (projects, organizations) uuids.",
            "in": "query",
            "name": "acquiringEntityId",
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            }
          },
          {
            "description": "Comma-separated list of acquired entity (projects, organizations) uuids.",
            "in": "query",
            "name": "acquiredEntityId",
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            }
          },
          {
            "description": "Filter by minimum transaction amount in USD. Will return deals which have transaction amount greater than the specified amount.",
            "in": "query",
            "name": "transactionAmountMin",
            "schema": {
              "format": "double",
              "type": "number",
              "example": 1000000,
              "default": 1000000
            }
          },
          {
            "description": "Filter by maximum transaction amount in USD. Will return deals which have transaction amount less than the specified amount.",
            "in": "query",
            "name": "transactionAmountMax",
            "schema": {
              "format": "double",
              "type": "number",
              "example": 1000000000,
              "default": 1000000000
            }
          },
          {
            "description": "Filter by deals announced before the specified date.",
            "in": "query",
            "name": "announcedBefore",
            "schema": {
              "format": "date-time",
              "type": "string"
            }
          },
          {
            "description": "Filter by deals announced after the specified date.",
            "in": "query",
            "name": "announcedAfter",
            "schema": {
              "format": "date-time",
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "properties": {
                    "data": {
                      "items": {
                        "$ref": "#/components/schemas/AcquisitionDeal"
                      },
                      "type": "array"
                    },
                    "error": {
                      "type": "string"
                    },
                    "metadata": {
                      "$ref": "#/components/schemas/Pagination"
                    }
                  },
                  "required": [
                    "data"
                  ],
                  "type": "object"
                },
                "example": {
                  "error": null,
                  "data": [
                    {
                      "id": "15109d30-6735-49ef-a5eb-0dfb484720f8",
                      "announcements": [
                        {
                          "url": "https://www.prnewswire.com/news-releases/falconx-acquires-leading-etp-provider-21shares-accelerating-the-convergence-of-digital-assets-and-traditional-finance-302590840.html"
                        }
                      ],
                      "announcementDate": "2025-10-22T00:00:00Z",
                      "transactionAmountUSD": null,
                      "status": "announced",
                      "acquiringEntity": {
                        "id": "8b256201-1356-4908-92b8-62e1872f0939",
                        "type": "Project",
                        "name": "FalconX",
                        "project": {
                          "id": "8b256201-1356-4908-92b8-62e1872f0939",
                          "name": "FalconX",
                          "foundedDate": "2018-01-01T00:00:00Z",
                          "category": "Marketplaces",
                          "sector": "Exchange",
                          "tags": [
                            "Automated Market Maker (AMM)",
                            "CeFi",
                            "Centralized Exchange",
                            "Derivatives",
                            "Options"
                          ],
                          "location": "San Mateo, California, United States",
                          "links": [
                            {
                              "name": "LinkedIn",
                              "type": "Social",
                              "url": "https://www.linkedin.com/company/thefalconx/"
                            },
                            {
                              "name": "Telegram",
                              "type": "Social",
                              "url": "https://t.me/Falcon_official"
                            },
                            {
                              "name": "Twitter",
                              "type": "Social",
                              "url": "https://twitter.com/falconxnetwork"
                            },
                            {
                              "name": "Website",
                              "type": "Website",
                              "url": "https://falconx.io"
                            }
                          ],
                          "overview": "FalconX is a digital asset platform specializing in institutional crypto trading. They offer a range of services including trade execution, credit and treasury management, prime offering, and market making. With a focus on reliability and liquidity, FalconX serves as a trusted solution for institutions in the crypto market. Their clients include leading financial institutions globally.",
                          "background": "",
                          "primaryAsset": null,
                          "secondaryAssets": [],
                          "organizations": []
                        }
                      },
                      "acquiredEntity": {
                        "id": "47d6c315-fbb0-4110-b801-be95e5ec4bb0",
                        "type": "Organization",
                        "name": "21Shares",
                        "organization": {
                          "id": "47d6c315-fbb0-4110-b801-be95e5ec4bb0",
                          "name": "21Shares",
                          "foundedDate": "2018-01-01T00:00:00Z",
                          "description": "21Shares is a crypto financial services company issuing crypto exchange-traded products.",
                          "category": "Marketplaces",
                          "sector": "Exchange",
                          "tags": [],
                          "location": "Z\u00fcrich, Z\u00fcrich, Switzerland",
                          "links": [
                            {
                              "name": "AngelList",
                              "type": "Analytics",
                              "url": "https://wellfound.com/company/amun"
                            },
                            {
                              "name": "CB Insights",
                              "type": "Analytics",
                              "url": "https://www.cbinsights.com/company/21shares"
                            },
                            {
                              "name": "Crunchbase",
                              "type": "Analytics",
                              "url": "https://www.crunchbase.com/organization/amun"
                            },
                            {
                              "name": "LinkedIn",
                              "type": "Social",
                              "url": "https://www.linkedin.com/company/21shares/"
                            },
                            {
                              "name": "Medium",
                              "type": "Resources",
                              "url": "https://21shares.medium.com/"
                            }
                          ]
                        }
                      }
                    },
                    {
                      "id": "e558841f-4f81-4f18-9c2c-9e8101145328",
                      "announcements": [
                        {
                          "url": "https://www.moderntreasury.com/journal/acquiring-beam-advancing-our-mission"
                        }
                      ],
                      "announcementDate": "2025-10-22T00:00:00Z",
                      "transactionAmountUSD": null,
                      "status": "announced",
                      "acquiringEntity": {
                        "id": "c88934e9-d08c-47ba-b059-4ffc09061ca2",
                        "type": "Organization",
                        "name": "Modern Treasury",
                        "organization": {
                          "id": "c88934e9-d08c-47ba-b059-4ffc09061ca2",
                          "name": "Modern Treasury",
                          "description": "Modern\u202fTreasury is a financial\u2010technology company that provides payment operations software allowing businesses to initiate, approve, track and reconcile bank transactions via APIs and dashboards. It supports multiple payment rails and automates workflows across payment initiation, ledgering and reconciliation.",
                          "category": "Financial Services",
                          "sector": "Payments",
                          "tags": [],
                          "links": [
                            {
                              "name": "LinkedIn",
                              "type": "Social",
                              "url": "https://www.linkedin.com/company/modern-treasury/"
                            },
                            {
                              "name": "Twitter",
                              "type": "Social",
                              "url": "https://x.com/ModernTreasury"
                            },
                            {
                              "name": "Website",
                              "type": "Website",
                              "url": "https://www.moderntreasury.com/"
                            }
                          ]
                        }
                      },
                      "acquiredEntity": {
                        "id": "746ea3c1-3939-4341-8b26-e41baf2439bb",
                        "type": "Project",
                        "name": "Beam",
                        "project": {
                          "id": "746ea3c1-3939-4341-8b26-e41baf2439bb",
                          "name": "Beam",
                          "foundedDate": "2022-01-01T00:00:00Z",
                          "category": "Financial Services",
                          "sector": "Payments",
                          "tags": [],
                          "links": [
                            {
                              "name": "Blog",
                              "type": "Content",
                              "url": "https://www.getbeam.cash/blog"
                            },
                            {
                              "name": "LinkedIn",
                              "type": "Social",
                              "url": "https://www.linkedin.com/company/beamcash/"
                            },
                            {
                              "name": "Twitter",
                              "type": "Social",
                              "url": "https://x.com/beam_cash"
                            },
                            {
                              "name": "Website",
                              "type": "Website",
                              "url": "https://www.getbeam.cash/"
                            }
                          ],
                          "overview": "Beam is a payments infrastructure company that enables users to send and receive stablecoin payments via messaging platforms. The company provides APIs and integrations that facilitate peer-to-peer transfers, merchant payments, and developer access to on-chain stablecoin transactions through third-party applications.",
                          "background": "",
                          "primaryAsset": null,
                          "secondaryAssets": [],
                          "organizations": []
                        }
                      }
                    },
                    {
                      "id": "e2fcfc7b-39d1-4f27-b886-aeda77762cba",
                      "announcements": [
                        {
                          "url": "https://www.crowdfundinsider.com/2025/10/254735-solana-validator-blockport-acquired-by-institutional-staking-provider-pier-two/"
                        }
                      ],
                      "announcementDate": "2025-10-21T00:00:00Z",
                      "transactionAmountUSD": null,
                      "status": "completed",
                      "acquiringEntity": {
                        "id": "d1d68202-314e-46f8-a472-acf3ecb853fa",
                        "type": "Organization",
                        "name": "Pier Two",
                        "organization": {
                          "id": "d1d68202-314e-46f8-a472-acf3ecb853fa",
                          "name": "Pier Two",
                          "foundedDate": "2018-01-01T00:00:00Z",
                          "description": "Pier Two is a provider of Web3 infrastructure services, specializing in non-custodial Ethereum staking and securing blockchain networks like Arbitrum. The company offers enterprise-grade infrastructure solutions, enabling clients to securely stake Ethereum and participate in blockchain validation. Pier Two also collaborates with projects such as Chainlink and receives support from the Ethereum Foundation.",
                          "category": "Mining and Validation",
                          "sector": "Validator Operations and Support",
                          "tags": [],
                          "location": "Brisbane, Queensland, Australia",
                          "links": [
                            {
                              "name": "Blog",
                              "type": "Content",
                              "url": "https://piertwo.com/blog/"
                            },
                            {
                              "name": "CB Insights",
                              "type": "Analytics",
                              "url": "https://www.cbinsights.com/company/pier-two"
                            },
                            {
                              "name": "Crunchbase",
                              "type": "Analytics",
                              "url": "https://www.crunchbase.com/organization/pier-two"
                            },
                            {
                              "name": "Github",
                              "type": "Resources",
                              "url": "https://github.com/Pier-Two"
                            },
                            {
                              "name": "LinkedIn",
                              "type": "Social",
                              "url": "https://www.linkedin.com/company/piertwo/"
                            }
                          ]
                        }
                      },
                      "acquiredEntity": {
                        "id": "a03d36c2-5cbc-4777-88b2-460af8899072",
                        "type": "Project",
                        "name": "Blockport",
                        "project": {
                          "id": "a03d36c2-5cbc-4777-88b2-460af8899072",
                          "name": "Blockport",
                          "tags": [],
                          "links": [],
                          "overview": "Blockport operates as a validator on Solana.",
                          "background": "",
                          "primaryAsset": null,
                          "secondaryAssets": [],
                          "organizations": []
                        }
                      }
                    },
                    {
                      "id": "2e2d55ff-5d2e-466e-9eab-392766689c6e",
                      "announcements": [
                        {
                          "url": "https://www.coinbase.com/blog/coinbase-acquires-echo-unlocking-the-future-of-onchain-capital-formation"
                        }
                      ],
                      "announcementDate": "2025-10-21T00:00:00Z",
                      "transactionAmountUSD": 375000000,
                      "status": "completed",
                      "acquiringEntity": {
                        "id": "f5eb4ab5-38cd-426f-bb7c-cb9bf94b0697",
                        "type": "Project",
                        "name": "Coinbase",
                        "project": {
                          "id": "f5eb4ab5-38cd-426f-bb7c-cb9bf94b0697",
                          "name": "Coinbase",
                          "foundedDate": "2012-01-01T00:00:00Z",
                          "category": "Marketplaces",
                          "sector": "Exchange",
                          "tags": [
                            "CeFi",
                            "Centralized Exchange",
                            "Derivatives",
                            "Perpetuals"
                          ],
                          "location": "San Francisco, California, United States",
                          "links": [
                            {
                              "name": "Blog",
                              "type": "Content",
                              "url": "https://www.coinbase.com/blog"
                            },
                            {
                              "name": "CB Insights",
                              "type": "Analytics",
                              "url": "https://www.cbinsights.com/company/coinbase"
                            },
                            {
                              "name": "Crunchbase",
                              "type": "Analytics",
                              "url": "https://www.crunchbase.com/organization/coinbase"
                            },
                            {
                              "name": "Documentation",
                              "type": "Resources",
                              "url": "https://docs.cloud.coinbase.com/exchange/docs/welcome"
                            },
                            {
                              "name": "Facebook",
                              "type": "Social",
                              "url": "https://www.facebook.com/Coinbase"
                            }
                          ],
                          "overview": "Coinbase is a cryptocurrency exchange platform that offers individuals and businesses to buy, sell, and manage cryptocurrencies. Users can store their crypto assets in a personal wallet, explore decentralized finance (DeFi), and participate in various investment and earning opportunities. The platform offers a wide range of cryptocurrencies, including Bitcoin and Ethereum, and provides advanced trading tools for experienced traders. Coinbase also offers solutions for institutional investors and businesses looking to integrate crypto into their operations.",
                          "background": "",
                          "primaryAsset": {
                            "id": "fadb2da4-d838-48e3-b441-dfcb026ac508",
                            "serialId": 988512,
                            "symbol": "Coinbase",
                            "name": "Coinbase",
                            "slug": "coinbase",
                            "category": "",
                            "sector": "",
                            "tags": []
                          },
                          "secondaryAssets": [],
                          "organizations": [
                            "17abc34d-1fcf-4036-a634-742a8c2bdbfe",
                            "1ff8be2f-e363-4291-85fb-39d11ed992e5",
                            "749763f9-e398-4740-b2c7-af826ca64164"
                          ]
                        }
                      },
                      "acquiredEntity": {
                        "id": "e13e4703-8287-48f8-8ea9-7303a6afc3e0",
                        "type": "Organization",
                        "name": "Echo",
                        "organization": {
                          "id": "e13e4703-8287-48f8-8ea9-7303a6afc3e0",
                          "name": "Echo",
                          "description": "Echo is a community-driven investment platform enabling early-stage funding for startups and token projects. It allows lead investors to form groups where members can participate in private funding rounds on a deal-by-deal basis, with investments executed entirely on-chain using USDC.",
                          "category": "Investment Management",
                          "sector": "Venture Capital",
                          "tags": [],
                          "links": [
                            {
                              "name": "Twitter",
                              "type": "Social",
                              "url": "https://x.com/echodotxyz"
                            },
                            {
                              "name": "Website",
                              "type": "Website",
                              "url": "https://echo.xyz/"
                            }
                          ]
                        }
                      }
                    },
                    {
                      "id": "73efc2bb-b775-461f-9e47-045079e0b9b0",
                      "announcements": [
                        {
                          "url": "https://www.theblock.co/post/374864/binance-completes-acquisition-gopax"
                        }
                      ],
                      "announcementDate": "2025-10-17T00:00:00Z",
                      "transactionAmountUSD": null,
                      "status": "completed",
                      "acquiringEntity": {
                        "id": "663163d8-a329-4c71-88f0-50ebc3d49784",
                        "type": "Organization",
                        "name": "Binance Holdings Ltd",
                        "organization": {
                          "id": "663163d8-a329-4c71-88f0-50ebc3d49784",
                          "name": "Binance Holdings Ltd",
                          "foundedDate": "2017-06-14T00:00:00Z",
                          "description": "Binance is a digital asset exchange ecosystem offering a variety of centralized and decentralized products and services for efficiently buying and selling blockchain-based coins and tokens. \n",
                          "category": "Marketplaces",
                          "sector": "Exchange",
                          "tags": [
                            "CeFi",
                            "Centralized Exchange",
                            "Derivatives",
                            "Options",
                            "Perpetuals"
                          ],
                          "location": "Vilnius, Vilnius City Municipality, Lithuania",
                          "links": [
                            {
                              "name": "AngelList",
                              "type": "Analytics",
                              "url": "https://wellfound.com/company/binance-3"
                            },
                            {
                              "name": "CB Insights",
                              "type": "Analytics",
                              "url": "https://www.cbinsights.com/company/binance"
                            },
                            {
                              "name": "Crunchbase",
                              "type": "Analytics",
                              "url": "https://www.crunchbase.com/organization/binance"
                            },
                            {
                              "name": "LinkedIn",
                              "type": "Social",
                              "url": "https://www.linkedin.com/company/binance/"
                            },
                            {
                              "name": "Pitchbook",
                              "type": "Analytics",
                              "url": "https://pitchbook.com/profiles/company/185763-25"
                            }
                          ]
                        }
                      },
                      "acquiredEntity": {
                        "id": "135a042c-cc57-4850-a619-8e5f7538ef21",
                        "type": "Organization",
                        "name": "Gopax",
                        "organization": {
                          "id": "135a042c-cc57-4850-a619-8e5f7538ef21",
                          "name": "Gopax",
                          "foundedDate": "2015-07-01T00:00:00Z",
                          "description": "Streami is a blockchain technology company focused on developing financial infrastructure solutions. It operates the GOPAX cryptocurrency exchange and offers services including digital asset trading, blockchain remittance solutions, and compliance with regulatory standards. Streami aims to enhance financial transparency and accessibility through blockchain technology.",
                          "category": "Marketplaces",
                          "sector": "Exchange",
                          "tags": [],
                          "location": "Seoul, Seoul, South Korea",
                          "links": [
                            {
                              "name": "CB Insights",
                              "type": "Analytics",
                              "url": "https://www.cbinsights.com/company/streami"
                            },
                            {
                              "name": "Crunchbase",
                              "type": "Analytics",
                              "url": "https://www.crunchbase.com/organization/gopax"
                            },
                            {
                              "name": "Facebook",
                              "type": "Social",
                              "url": "https://www.facebook.com/gopaxkr/"
                            },
                            {
                              "name": "LinkedIn",
                              "type": "Social",
                              "url": "https://www.linkedin.com/company/streami-inc-/"
                            },
                            {
                              "name": "Medium",
                              "type": "Resources",
                              "url": "https://medium.com/gopax"
                            }
                          ]
                        }
                      }
                    }
                  ],
                  "metadata": {
                    "limit": 10,
                    "page": 1,
                    "totalRows": 1236,
                    "totalPages": 124
                  }
                }
              }
            },
            "description": "Default response"
          },
          "400": {
            "content": {
              "application/json": {
                "schema": {
                  "properties": {
                    "data": {},
                    "error": {
                      "type": "string"
                    }
                  },
                  "required": [
                    "data"
                  ],
                  "type": "object"
                }
              }
            },
            "description": "Bad Request"
          },
          "403": {
            "content": {
              "application/json": {
                "schema": {
                  "properties": {
                    "data": {},
                    "error": {
                      "type": "string"
                    }
                  },
                  "required": [
                    "data"
                  ],
                  "type": "object"
                }
              }
            },
            "description": "Forbidden"
          },
          "500": {
            "content": {
              "application/json": {
                "schema": {
                  "properties": {
                    "data": {},
                    "error": {
                      "type": "string"
                    }
                  },
                  "required": [
                    "data"
                  ],
                  "type": "object"
                }
              }
            },
            "description": "Internal Server Error"
          }
        },
        "security": [
          {
            "apiKey": []
          }
        ],
        "summary": "GetAcquisitionDeals",
        "tags": [
          "funding/MergersAndAcquisitions"
        ]
      }
    },
    "/funding/v1/organizations": {
      "get": {
        "description": "Lookup Organizations given a set of filters.",
        "operationId": "getOrganizations",
        "parameters": [
          {
            "in": "query",
            "name": "limit",
            "schema": {
              "format": "int64",
              "type": "integer",
              "default": 10
            }
          },
          {
            "in": "query",
            "name": "page",
            "schema": {
              "format": "int64",
              "type": "integer",
              "default": 0
            }
          },
          {
            "description": "Comma-separated list of organization uuids to filter by.",
            "in": "query",
            "name": "id",
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            }
          },
          {
            "description": "Comma-separated list of categories to filter by.",
            "in": "query",
            "name": "category",
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            }
          },
          {
            "description": "Comma-separated list of sectors to filter by.",
            "in": "query",
            "name": "sector",
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            }
          },
          {
            "description": "Comma-separated list of tags to filter by. Will return organizations that match at least one of the specified tags.",
            "in": "query",
            "name": "tags",
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            }
          },
          {
            "description": "Filter by organizations founded before the specified date.",
            "in": "query",
            "name": "foundedBefore",
            "schema": {
              "format": "date-time",
              "type": "string",
              "example": "2025-12-31T23:59:59Z",
              "default": "2025-12-31T23:59:59Z"
            }
          },
          {
            "description": "Filter by organizations founded after the specified date.",
            "in": "query",
            "name": "foundedAfter",
            "schema": {
              "format": "date-time",
              "type": "string",
              "example": "2020-01-01T00:00:00Z",
              "default": "2020-01-01T00:00:00Z"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "properties": {
                    "data": {
                      "items": {
                        "$ref": "#/components/schemas/Organization"
                      },
                      "type": "array"
                    },
                    "error": {
                      "type": "string"
                    },
                    "metadata": {
                      "$ref": "#/components/schemas/Pagination"
                    }
                  },
                  "required": [
                    "data"
                  ],
                  "type": "object"
                },
                "example": {
                  "error": null,
                  "data": [
                    {
                      "id": "000091c2-43d2-436e-aff4-6197c02cf0b1",
                      "name": "Bowery Capital",
                      "foundedDate": "2013-01-01T00:00:00Z",
                      "description": "Bowery Capital is a venture capital firm investing in early-stage technology startups.",
                      "tags": [],
                      "location": "New York City, New York, United States",
                      "links": [
                        {
                          "name": "AngelList",
                          "type": "Analytics",
                          "url": "https://wellfound.com/company/bowery-capital-1"
                        },
                        {
                          "name": "Blog",
                          "type": "Content",
                          "url": "https://bowerycap.com/blog"
                        },
                        {
                          "name": "Crunchbase",
                          "type": "Analytics",
                          "url": "https://www.crunchbase.com/organization/bowery-capital"
                        },
                        {
                          "name": "LinkedIn",
                          "type": "Social",
                          "url": "https://www.linkedin.com/company/bowery-capital/"
                        },
                        {
                          "name": "Pitchbook",
                          "type": "Analytics",
                          "url": "https://pitchbook.com/profiles/investor/56829-97"
                        }
                      ]
                    },
                    {
                      "id": "00029ccb-9b42-4242-bfac-1a89182bc79d",
                      "name": "Tribeca Venture Partners",
                      "description": "Tribeca Venture Partners is an investment firm located in New York. They partner with determined entrepreneurs leveraging emerging technologies to create or disrupt large markets. Their portfolio includes companies such as ACV Auctions, AppNexus, Katapult, and ShopKeep. They have a successful track record with 90% of their Series A investments raising a Series B and have had several portfolio companies become unicorns or fund returners.",
                      "category": "Investment Management",
                      "sector": "Venture Capital",
                      "tags": [],
                      "location": "New York City, New York, United States",
                      "links": [
                        {
                          "name": "AngelList",
                          "type": "Analytics",
                          "url": "https://wellfound.com/company/tribeca-venture-partners"
                        },
                        {
                          "name": "Blog",
                          "type": "Content",
                          "url": "https://tribecavp.medium.com/"
                        },
                        {
                          "name": "Crunchbase",
                          "type": "Analytics",
                          "url": "https://www.crunchbase.com/organization/tribeca-venture-partners"
                        },
                        {
                          "name": "LinkedIn",
                          "type": "Social",
                          "url": "https://www.linkedin.com/company/tribecavp/"
                        },
                        {
                          "name": "Pitchbook",
                          "type": "Analytics",
                          "url": "https://pitchbook.com/profiles/investor/11877-94"
                        }
                      ]
                    },
                    {
                      "id": "00063266-6da3-49bc-8b8a-df95b24f6a10",
                      "name": "EQT Ventures",
                      "foundedDate": "2015-01-01T00:00:00Z",
                      "description": "EQT Ventures is a multi-stage venture capital firm investing in information technology and SaaS companies.",
                      "category": "Investment Management",
                      "sector": "Venture Capital",
                      "tags": [],
                      "location": "Stockholm, Stockholm County, Sweden",
                      "links": [
                        {
                          "name": "AngelList",
                          "type": "Analytics",
                          "url": "https://wellfound.com/company/eqtventures"
                        },
                        {
                          "name": "CB Insights",
                          "type": "Analytics",
                          "url": "https://www.cbinsights.com/investor/eqt-ventures"
                        },
                        {
                          "name": "Crunchbase",
                          "type": "Analytics",
                          "url": "https://www.crunchbase.com/organization/eqtventures"
                        },
                        {
                          "name": "LinkedIn",
                          "type": "Social",
                          "url": "https://www.linkedin.com/company/eqt-ventures/"
                        },
                        {
                          "name": "Medium",
                          "type": "Resources",
                          "url": "https://eqtventures.medium.com/"
                        }
                      ]
                    },
                    {
                      "id": "00073b39-149f-4560-af03-a29959ad2b68",
                      "name": "Interplay",
                      "foundedDate": "2012-01-01T00:00:00Z",
                      "description": "Interplay is a venture capital firm investing in crypto, fintech, SaaS, healthcare, and media companies.",
                      "category": "Investment Management",
                      "sector": "Venture Capital",
                      "tags": [],
                      "location": "New York City, New York, United States",
                      "links": [
                        {
                          "name": "AngelList",
                          "type": "Analytics",
                          "url": "https://wellfound.com/company/interplay-ventures"
                        },
                        {
                          "name": "Blog",
                          "type": "Content",
                          "url": "https://www.interplay.vc/blog"
                        },
                        {
                          "name": "Crunchbase",
                          "type": "Analytics",
                          "url": "https://www.crunchbase.com/organization/interplay-ventures"
                        },
                        {
                          "name": "LinkedIn",
                          "type": "Social",
                          "url": "https://www.linkedin.com/company/interplayvc"
                        },
                        {
                          "name": "Pitchbook",
                          "type": "Analytics",
                          "url": "https://pitchbook.com/profiles/investor/56637-91"
                        }
                      ]
                    },
                    {
                      "id": "000abd72-223f-4f6c-b2f7-ad50a2e92f0b",
                      "name": "Avenir Growth Capital",
                      "foundedDate": "2017-01-01T00:00:00Z",
                      "description": "Avenir Growth Capital is a private equity firm investing in technology companies.",
                      "category": "Investment Management",
                      "sector": "Private Equity",
                      "tags": [],
                      "location": "New York City, New York, United States",
                      "links": [
                        {
                          "name": "CB Insights",
                          "type": "Analytics",
                          "url": "https://www.cbinsights.com/investor/avenir-growth-capital"
                        },
                        {
                          "name": "Crunchbase",
                          "type": "Analytics",
                          "url": "https://www.crunchbase.com/organization/avenir-growth-capital"
                        },
                        {
                          "name": "LinkedIn",
                          "type": "Social",
                          "url": "https://www.linkedin.com/company/avenir-growth-capital/"
                        },
                        {
                          "name": "Pitchbook",
                          "type": "Analytics",
                          "url": "https://pitchbook.com/profiles/investor/183357-91"
                        },
                        {
                          "name": "Twitter",
                          "type": "Social",
                          "url": "https://twitter.com/avenirgrowth"
                        }
                      ]
                    }
                  ],
                  "metadata": {
                    "limit": 10,
                    "page": 1,
                    "totalRows": 11352,
                    "totalPages": 1136
                  }
                }
              }
            },
            "description": "Default response"
          },
          "400": {
            "content": {
              "application/json": {
                "schema": {
                  "properties": {
                    "data": {},
                    "error": {
                      "type": "string"
                    }
                  },
                  "required": [
                    "data"
                  ],
                  "type": "object"
                }
              }
            },
            "description": "Bad Request"
          },
          "403": {
            "content": {
              "application/json": {
                "schema": {
                  "properties": {
                    "data": {},
                    "error": {
                      "type": "string"
                    }
                  },
                  "required": [
                    "data"
                  ],
                  "type": "object"
                }
              }
            },
            "description": "Forbidden"
          },
          "500": {
            "content": {
              "application/json": {
                "schema": {
                  "properties": {
                    "data": {},
                    "error": {
                      "type": "string"
                    }
                  },
                  "required": [
                    "data"
                  ],
                  "type": "object"
                }
              }
            },
            "description": "Internal Server Error"
          }
        },
        "security": [
          {
            "apiKey": []
          }
        ],
        "summary": "GetOrganizations",
        "tags": [
          "funding/Entities"
        ]
      }
    },
    "/funding/v1/projects": {
      "get": {
        "description": "Lookup Projects given a set of filters.",
        "operationId": "getProjects",
        "parameters": [
          {
            "in": "query",
            "name": "limit",
            "schema": {
              "format": "int64",
              "type": "integer",
              "default": 10
            }
          },
          {
            "in": "query",
            "name": "page",
            "schema": {
              "format": "int64",
              "type": "integer",
              "default": 0
            }
          },
          {
            "description": "Comma-separated list of project uuids to filter by.",
            "in": "query",
            "name": "id",
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            }
          },
          {
            "description": "Comma-separated list of categories to filter by.",
            "in": "query",
            "name": "category",
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            }
          },
          {
            "description": "Comma-separated list of sectors to filter by.",
            "in": "query",
            "name": "sector",
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            }
          },
          {
            "description": "Comma-separated list of tags to filter by. Will return projects that match at least one of the specified tags.",
            "in": "query",
            "name": "tags",
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            }
          },
          {
            "description": "Filter by projects founded before the specified date.",
            "in": "query",
            "name": "foundedBefore",
            "schema": {
              "format": "date-time",
              "type": "string",
              "example": "2025-12-31T23:59:59Z",
              "default": "2025-12-31T23:59:59Z"
            }
          },
          {
            "description": "Filter by projects founded after the specified date.",
            "in": "query",
            "name": "foundedAfter",
            "schema": {
              "format": "date-time",
              "type": "string",
              "example": "2020-01-01T00:00:00Z",
              "default": "2020-01-01T00:00:00Z"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "properties": {
                    "data": {
                      "items": {
                        "$ref": "#/components/schemas/Project"
                      },
                      "type": "array"
                    },
                    "error": {
                      "type": "string"
                    },
                    "metadata": {
                      "$ref": "#/components/schemas/Pagination"
                    }
                  },
                  "required": [
                    "data"
                  ],
                  "type": "object"
                },
                "example": {
                  "error": null,
                  "data": [
                    {
                      "id": "000109b4-16b2-4aeb-9917-92bbc5353ef4",
                      "name": "Make America Healthy Again",
                      "tags": [],
                      "links": [
                        {
                          "name": "Block Explorer",
                          "type": "Block Explorer",
                          "url": "https://platform.arkhamintelligence.com/explorer/token/make-america-healthy-again"
                        },
                        {
                          "name": "Etherscan",
                          "type": "Block Explorer",
                          "url": "https://etherscan.io/token/0xF7554EAC0bF20d702E69d08C425E817ABb976AeA"
                        },
                        {
                          "name": "Telegram",
                          "type": "Social",
                          "url": "https://t.me/MAHAtokenofficial"
                        },
                        {
                          "name": "Twitter",
                          "type": "Social",
                          "url": "https://twitter.com/MAHAtoken"
                        },
                        {
                          "name": "Website",
                          "type": "Website",
                          "url": "https://mahatoken.com"
                        }
                      ],
                      "overview": "",
                      "background": "",
                      "primaryAsset": {
                        "id": "8860de29-1438-46d2-aed7-cef02251ed5a",
                        "serialId": 780467,
                        "symbol": "maha",
                        "name": "Make America Healthy Again",
                        "slug": "make-america-healthy-again",
                        "category": "",
                        "sector": "",
                        "tags": []
                      },
                      "secondaryAssets": [],
                      "organizations": []
                    },
                    {
                      "id": "00017c68-b39c-4e9c-8e46-2d126b733553",
                      "name": "AQA3",
                      "tags": [],
                      "links": [
                        {
                          "name": "Forum",
                          "type": "Governance",
                          "url": "https://aqa3.io/"
                        },
                        {
                          "name": "Gitbook",
                          "type": "Resources",
                          "url": "https://aqa.gitbook.io/aqa-white-paper-ver.4"
                        },
                        {
                          "name": "Telegram",
                          "type": "Social",
                          "url": "https://t.me/AQAFoundation"
                        },
                        {
                          "name": "Twitter",
                          "type": "Social",
                          "url": "https://x.com/AQA314"
                        },
                        {
                          "name": "Website",
                          "type": "Website",
                          "url": "https://about.aqa3.io/foundation"
                        }
                      ],
                      "overview": "AQA Foundation develops a Web3 platform for social and economic interactions. Its services include a blockchain-based forum for sharing Web3 information.",
                      "background": "",
                      "primaryAsset": null,
                      "secondaryAssets": [],
                      "organizations": []
                    },
                    {
                      "id": "00026691-5b92-41cb-8450-fa7e73e0872c",
                      "name": "Few Wrapped Orbit Protocol",
                      "tags": [],
                      "links": [],
                      "overview": "",
                      "background": "",
                      "primaryAsset": {
                        "id": "2576e81e-7003-4868-b561-601504b5e0dc",
                        "serialId": 977931,
                        "symbol": "fworbit",
                        "name": "Few Wrapped Orbit Protocol",
                        "slug": "few-wrapped-orbit-protocol",
                        "category": "",
                        "sector": "",
                        "tags": []
                      },
                      "secondaryAssets": [],
                      "organizations": []
                    },
                    {
                      "id": "0002d889-6089-4b5a-a88d-8ee855bd3a1c",
                      "name": "Fair BERC20",
                      "tags": [],
                      "links": [
                        {
                          "name": "Block Explorer",
                          "type": "Block Explorer",
                          "url": "https://ethplorer.io/address/0xbC8E35221904F61b4200Ca44a08e4daC387Ac83A"
                        },
                        {
                          "name": "Discord",
                          "type": "Social",
                          "url": "https://discord.gg/BkWAcYzNvh"
                        },
                        {
                          "name": "Etherscan",
                          "type": "Block Explorer",
                          "url": "https://etherscan.io/token/0xbc8e35221904f61b4200ca44a08e4dac387ac83a"
                        },
                        {
                          "name": "Medium",
                          "type": "Content",
                          "url": "https://medium.com/@FairBERC20"
                        },
                        {
                          "name": "Telegram",
                          "type": "Social",
                          "url": "https://t.me/berc20en"
                        }
                      ],
                      "overview": "",
                      "background": "",
                      "primaryAsset": {
                        "id": "dbd77ab9-3b22-478d-9f27-cab427bde6d0",
                        "serialId": 322983,
                        "symbol": "berc",
                        "name": "Fair BERC20",
                        "slug": "fair-berc20",
                        "category": "",
                        "sector": "",
                        "tags": []
                      },
                      "secondaryAssets": [],
                      "organizations": []
                    },
                    {
                      "id": "00035025-eb6c-460e-98b6-498c4405c7c4",
                      "name": "Phunware",
                      "foundedDate": "2009-01-01T00:00:00Z",
                      "category": "Data",
                      "sector": "Analytics",
                      "tags": [
                        "Travel and Hospitality"
                      ],
                      "location": "Austin, Arkansas, United States",
                      "links": [
                        {
                          "name": "CB Insights",
                          "type": "Analytics",
                          "url": "https://www.cbinsights.com/company/phunware"
                        },
                        {
                          "name": "Crunchbase",
                          "type": "Analytics",
                          "url": "https://www.crunchbase.com/organization/phunware"
                        },
                        {
                          "name": "Facebook",
                          "type": "Social",
                          "url": "https://www.facebook.com/phunware"
                        },
                        {
                          "name": "Instagram",
                          "type": "Social",
                          "url": "https://www.instagram.com/phunware"
                        },
                        {
                          "name": "LinkedIn",
                          "type": "Social",
                          "url": "https://www.linkedin.com/company/phunware/"
                        }
                      ],
                      "overview": "Phunware collaborates with leading healthcare and hospitality brands, providing personalized mobile experiences through apps and SDKs that include wayfinding and engagement technologies. This facilitates integrated, seamless customer journeys in hospitals, hotels, and smart buildings, enhancing satisfaction and revenue.",
                      "background": "",
                      "primaryAsset": null,
                      "secondaryAssets": [],
                      "organizations": []
                    }
                  ],
                  "metadata": {
                    "limit": 10,
                    "page": 1,
                    "totalRows": 63886,
                    "totalPages": 6389
                  }
                }
              }
            },
            "description": "Default response"
          },
          "400": {
            "content": {
              "application/json": {
                "schema": {
                  "properties": {
                    "data": {},
                    "error": {
                      "type": "string"
                    }
                  },
                  "required": [
                    "data"
                  ],
                  "type": "object"
                }
              }
            },
            "description": "Bad Request"
          },
          "403": {
            "content": {
              "application/json": {
                "schema": {
                  "properties": {
                    "data": {},
                    "error": {
                      "type": "string"
                    }
                  },
                  "required": [
                    "data"
                  ],
                  "type": "object"
                }
              }
            },
            "description": "Forbidden"
          },
          "500": {
            "content": {
              "application/json": {
                "schema": {
                  "properties": {
                    "data": {},
                    "error": {
                      "type": "string"
                    }
                  },
                  "required": [
                    "data"
                  ],
                  "type": "object"
                }
              }
            },
            "description": "Internal Server Error"
          }
        },
        "security": [
          {
            "apiKey": []
          }
        ],
        "summary": "GetProjects",
        "tags": [
          "funding/Entities"
        ]
      }
    },
    "/funding/v1/rounds": {
      "get": {
        "description": "Lookup Funding Rounds given a set of filters.",
        "operationId": "getRounds",
        "parameters": [
          {
            "in": "query",
            "name": "limit",
            "schema": {
              "format": "int64",
              "type": "integer",
              "default": 10
            }
          },
          {
            "in": "query",
            "name": "page",
            "schema": {
              "format": "int64",
              "type": "integer",
              "default": 0
            }
          },
          {
            "description": "Comma-separated list of projects or organizations uuids which received funding.",
            "in": "query",
            "name": "fundedEntityId",
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            }
          },
          {
            "description": "Comma-separated list of investor (persons, projects, orgs) IDs who invested in the funding rounds to be retrieved.",
            "in": "query",
            "name": "investorId",
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            }
          },
          {
            "description": "Comma-separated list of funding round types to filter by.",
            "in": "query",
            "name": "type",
            "schema": {
              "items": {
                "enum": [
                  "Accelerator",
                  "Debt Financing",
                  "Extended Pre Seed",
                  "Extended Seed",
                  "Extended Series A",
                  "Extended Series B",
                  "Extended Series C",
                  "Extended Series D",
                  "Grant",
                  "ICO",
                  "IPO",
                  "Post IPO",
                  "Post IPO Debt",
                  "Pre Seed",
                  "Pre Series A",
                  "Pre Series B",
                  "Private Token Sale",
                  "Public Token Sale",
                  "Seed",
                  "Series A",
                  "Series B",
                  "Series C",
                  "Series D",
                  "Series E",
                  "Series F",
                  "Series G",
                  "Series H",
                  "Strategic",
                  "Treasury Diversification",
                  "Undisclosed"
                ],
                "type": "string"
              },
              "type": "array"
            }
          },
          {
            "description": "Comma-separated list of funding round stages to filter by.",
            "in": "query",
            "name": "stage",
            "schema": {
              "items": {
                "enum": [
                  "Seed",
                  "Early Stage",
                  "Late Stage",
                  "Public Equity Offering",
                  "Post Public Equity",
                  "Miscellaneous"
                ],
                "type": "string"
              },
              "type": "array"
            }
          },
          {
            "description": "Filter by maximum amount raised in USD. Will return rounds which have raised less than the specified amount.",
            "in": "query",
            "name": "raisedAmountMax",
            "schema": {
              "format": "double",
              "type": "number"
            }
          },
          {
            "description": "Filter by minimum amount raised in USD. Will return rounds which have raised more than the specified amount.",
            "in": "query",
            "name": "raisedAmountMin",
            "schema": {
              "format": "double",
              "type": "number"
            }
          },
          {
            "description": "Filter by rounds that were funded with tokens.",
            "in": "query",
            "name": "isTokenFunded",
            "schema": {
              "type": "boolean",
              "example": true,
              "default": true
            }
          },
          {
            "description": "Filter by rounds announced before the specified date.",
            "in": "query",
            "name": "announcedBefore",
            "schema": {
              "format": "date-time",
              "type": "string"
            }
          },
          {
            "description": "Filter by rounds announced after the specified date.",
            "in": "query",
            "name": "announcedAfter",
            "schema": {
              "format": "date-time",
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "properties": {
                    "data": {
                      "items": {
                        "$ref": "#/components/schemas/FundingRound"
                      },
                      "type": "array"
                    },
                    "error": {
                      "type": "string"
                    },
                    "metadata": {
                      "$ref": "#/components/schemas/Pagination"
                    }
                  },
                  "required": [
                    "data"
                  ],
                  "type": "object"
                },
                "example": {
                  "error": null,
                  "data": [
                    {
                      "id": "19eb0c40-869f-41b6-ae55-d7ae2a94f7ce",
                      "announcements": [
                        {
                          "url": "https://en.cryptonomist.ch/2025/10/23/technotainment-raises-2m-community-pre-seed-as-prepares-streaming-2-0-launch/"
                        },
                        {
                          "url": "https://finbold.com/technotainment-raises-2-million-ahead-of-streaming-2-0-launch/"
                        }
                      ],
                      "announcementDate": "2025-10-23T15:00:00Z",
                      "type": "Pre Seed",
                      "stage": "Miscellaneous",
                      "isTokenFunded": false,
                      "amountRaisedUSD": 2000000,
                      "fundedEntity": {
                        "id": "6b912c2c-9af5-48e1-8e81-0abfbac5c558",
                        "type": "Project",
                        "name": "Technotainment"
                      },
                      "hasNativeAsset": false,
                      "investors": {
                        "organizationIDs": [],
                        "projectIDs": [],
                        "personIDs": []
                      }
                    },
                    {
                      "id": "0769b336-95b5-40fc-826f-631f4b5717c7",
                      "announcements": [
                        {
                          "url": "https://www.theblock.co/post/375874/tether-joins-39-million-funding-round-in-programmable-pave-bank"
                        }
                      ],
                      "announcementDate": "2025-10-23T06:45:00Z",
                      "type": "Series A",
                      "stage": "Miscellaneous",
                      "isTokenFunded": false,
                      "amountRaisedUSD": 39000000,
                      "fundedEntity": {
                        "id": "844ae1b8-b588-45a8-b9dc-c3c785d5c9f3",
                        "type": "Project",
                        "name": "Pave Bank"
                      },
                      "hasNativeAsset": false,
                      "investors": {
                        "organizationIDs": [
                          "0b4668e2-6605-4769-af78-01585fe7ee3d",
                          "89f4cea3-4fdd-448d-bab1-38a4ae0d38f4",
                          "d109cc83-516e-4d37-a977-00d372871cea",
                          "dda6962a-f25e-4fa6-838a-f94de017b460"
                        ],
                        "projectIDs": [
                          "1eaf063a-b8dd-4cfb-95dd-a06338565720"
                        ],
                        "personIDs": []
                      }
                    },
                    {
                      "id": "59c21e3c-b335-484f-8512-73fa79697f22",
                      "announcements": [
                        {
                          "url": "https://x.com/KinetiqFND/status/1981005145908392376"
                        }
                      ],
                      "announcementDate": "2025-10-22T14:00:00Z",
                      "type": "Seed",
                      "stage": "Seed",
                      "isTokenFunded": false,
                      "amountRaisedUSD": 1750000,
                      "fundedEntity": {
                        "id": "db866c16-5c64-4323-80f1-051fe98b1e67",
                        "type": "Project",
                        "name": "Kinetiq"
                      },
                      "hasNativeAsset": true,
                      "investors": {
                        "organizationIDs": [
                          "3661cd5c-d315-4871-8a7c-24e3bea2612b",
                          "fa184254-25a7-4814-89a7-90de304ebdba",
                          "302c173a-cc0e-4f09-8b8e-e379b7b7e688",
                          "10337f59-0c39-4986-8f4f-e60c42176d0c",
                          "d1d68202-314e-46f8-a472-acf3ecb853fa"
                        ],
                        "projectIDs": [
                          "93537e1f-c2ee-41d7-9b5c-e618b08c2ee1",
                          "ab6ddb02-748b-489b-83d5-f7ca4361c3e5",
                          "23524d00-a58d-4957-b149-288f5110372e"
                        ],
                        "personIDs": [
                          "1926465a-bac7-48a3-b4d8-a90cc0636bf4",
                          "888d7256-acde-45e2-9712-4a43dd446a85",
                          "e5c9e9c7-daac-47cf-b1a3-0f1019890803",
                          "406e8e73-8421-4465-b96c-f1013a5f0999",
                          "180a96de-df97-4d5b-afd0-7e30bfc49733"
                        ]
                      }
                    },
                    {
                      "id": "ffa8b275-f642-469e-aed6-93e773dc1a01",
                      "announcements": [
                        {
                          "url": "https://x.com/FD_LABS_X/status/1980999437720948776"
                        }
                      ],
                      "announcementDate": "2025-10-22T13:30:00Z",
                      "type": "Strategic",
                      "stage": "Miscellaneous",
                      "isTokenFunded": false,
                      "amountRaisedUSD": 500000,
                      "fundedEntity": {
                        "id": "64aeea43-0fb4-4ddd-a9d7-8ebf1d292150",
                        "type": "Project",
                        "name": "bitsCrunch"
                      },
                      "hasNativeAsset": true,
                      "investors": {
                        "organizationIDs": [
                          "70f1e5ae-be0b-4410-83a7-85ada59196bf"
                        ],
                        "projectIDs": [],
                        "personIDs": []
                      }
                    },
                    {
                      "id": "adfd002a-1d77-498c-974b-ec128e242bf2",
                      "announcements": [
                        {
                          "url": "https://www.businesswire.com/news/home/20251022194428/en/Cybrid-Raises-%2410M-to-Power-Stablecoins-for-Financial-Institutions"
                        },
                        {
                          "url": "https://www.axios.com/pro/fintech-deals/2025/10/22/cybrid-10m-stablecoin-fiat-rails"
                        },
                        {
                          "url": "https://www.finsmes.com/2025/10/cybrid-raises-10m-in-series-a-funding.html"
                        }
                      ],
                      "announcementDate": "2025-10-22T11:00:00Z",
                      "type": "Series A",
                      "stage": "Miscellaneous",
                      "isTokenFunded": false,
                      "amountRaisedUSD": 10000000,
                      "fundedEntity": {
                        "id": "5b9e6992-2083-4eb7-9a7e-bd4207ef0861",
                        "type": "Project",
                        "name": "Cybrid"
                      },
                      "hasNativeAsset": false,
                      "investors": {
                        "organizationIDs": [
                          "fa950a46-98a3-42a5-84aa-48ebd422a1cf",
                          "9c6f1198-f8af-400b-9df8-2bfe53f1c92e",
                          "62d15825-c909-4287-8aeb-e00e0dc1383e",
                          "767c7329-5511-4e1c-86e4-e3bda1b0258a"
                        ],
                        "projectIDs": [],
                        "personIDs": []
                      }
                    }
                  ],
                  "metadata": {
                    "limit": 10,
                    "page": 1,
                    "totalRows": 19903,
                    "totalPages": 1991
                  }
                }
              }
            },
            "description": "Default response"
          },
          "400": {
            "content": {
              "application/json": {
                "schema": {
                  "properties": {
                    "data": {},
                    "error": {
                      "type": "string"
                    }
                  },
                  "required": [
                    "data"
                  ],
                  "type": "object"
                }
              }
            },
            "description": "Bad Request"
          },
          "403": {
            "content": {
              "application/json": {
                "schema": {
                  "properties": {
                    "data": {},
                    "error": {
                      "type": "string"
                    }
                  },
                  "required": [
                    "data"
                  ],
                  "type": "object"
                }
              }
            },
            "description": "Forbidden"
          },
          "500": {
            "content": {
              "application/json": {
                "schema": {
                  "properties": {
                    "data": {},
                    "error": {
                      "type": "string"
                    }
                  },
                  "required": [
                    "data"
                  ],
                  "type": "object"
                }
              }
            },
            "description": "Internal Server Error"
          }
        },
        "security": [
          {
            "apiKey": []
          }
        ],
        "summary": "GetRounds",
        "tags": [
          "funding/FundingRound"
        ]
      }
    },
    "/funding/v1/rounds/investors": {
      "get": {
        "description": "Lookup Investors that participated in a set of Funding Rounds given a set of filters. Filters are applied to the Funding Rounds, and then their Investors are returned.",
        "operationId": "getRoundsInvestors",
        "parameters": [
          {
            "in": "query",
            "name": "limit",
            "schema": {
              "format": "int64",
              "type": "integer",
              "default": 10
            }
          },
          {
            "in": "query",
            "name": "page",
            "schema": {
              "format": "int64",
              "type": "integer",
              "default": 0
            }
          },
          {
            "description": "Comma-separated list of projects or organizations uuids which received funding.",
            "in": "query",
            "name": "fundedEntityId",
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            }
          },
          {
            "description": "Comma-separated list of investor (persons, projects, orgs) IDs who invested in the funding rounds to be retrieved.",
            "in": "query",
            "name": "investorId",
            "schema": {
              "items": {
                "type": "string"
              },
              "type": "array"
            }
          },
          {
            "description": "Comma-separated list of funding round types to filter by.",
            "in": "query",
            "name": "type",
            "schema": {
              "items": {
                "enum": [
                  "Accelerator",
                  "Debt Financing",
                  "Extended Pre Seed",
                  "Extended Seed",
                  "Extended Series A",
                  "Extended Series B",
                  "Extended Series C",
                  "Extended Series D",
                  "Grant",
                  "ICO",
                  "IPO",
                  "Post IPO",
                  "Post IPO Debt",
                  "Pre Seed",
                  "Pre Series A",
                  "Pre Series B",
                  "Private Token Sale",
                  "Public Token Sale",
                  "Seed",
                  "Series A",
                  "Series B",
                  "Series C",
                  "Series D",
                  "Series E",
                  "Series F",
                  "Series G",
                  "Series H",
                  "Strategic",
                  "Treasury Diversification",
                  "Undisclosed"
                ],
                "type": "string"
              },
              "type": "array"
            }
          },
          {
            "description": "Comma-separated list of funding round stages to filter by.",
            "in": "query",
            "name": "stage",
            "schema": {
              "items": {
                "enum": [
                  "Seed",
                  "Early Stage",
                  "Late Stage",
                  "Public Equity Offering",
                  "Post Public Equity",
                  "Miscellaneous"
                ],
                "type": "string"
              },
              "type": "array"
            }
          },
          {
            "description": "Filter by maximum amount raised in USD. Will return rounds which have raised less than the specified amount.",
            "in": "query",
            "name": "raisedAmountMax",
            "schema": {
              "format": "double",
              "type": "number"
            }
          },
          {
            "description": "Filter by minimum amount raised in USD. Will return rounds which have raised more than the specified amount.",
            "in": "query",
            "name": "raisedAmountMin",
            "schema": {
              "format": "double",
              "type": "number"
            }
          },
          {
            "description": "Filter by rounds that were funded with tokens.",
            "in": "query",
            "name": "isTokenFunded",
            "schema": {
              "type": "boolean",
              "example": true,
              "default": true
            }
          },
          {
            "description": "Filter by rounds announced before the specified date.",
            "in": "query",
            "name": "announcedBefore",
            "schema": {
              "format": "date-time",
              "type": "string"
            }
          },
          {
            "description": "Filter by rounds announced after the specified date.",
            "in": "query",
            "name": "announcedAfter",
            "schema": {
              "format": "date-time",
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "properties": {
                    "data": {
                      "items": {
                        "$ref": "#/components/schemas/Investors"
                      },
                      "type": "array"
                    },
                    "error": {
                      "type": "string"
                    },
                    "metadata": {
                      "$ref": "#/components/schemas/Pagination"
                    }
                  },
                  "required": [
                    "data"
                  ],
                  "type": "object"
                },
                "example": {
                  "error": null,
                  "data": [
                    {
                      "fundingRoundId": "19eb0c40-869f-41b6-ae55-d7ae2a94f7ce",
                      "organizations": null,
                      "projects": null,
                      "persons": null
                    },
                    {
                      "fundingRoundId": "0769b336-95b5-40fc-826f-631f4b5717c7",
                      "organizations": [
                        {
                          "id": "dda6962a-f25e-4fa6-838a-f94de017b460",
                          "name": "Quona Capital",
                          "foundedDate": "2014-01-01T00:00:00Z",
                          "description": "Quona Capital is a venture capital firm investing in blockchain, fintech, payment, and SaaS companies.",
                          "category": "Investment Management",
                          "sector": "Venture Capital",
                          "tags": [],
                          "location": "Washington D.C., District of Columbia, United States",
                          "links": [
                            {
                              "name": "Blog",
                              "type": "Content",
                              "url": "https://quona.com/blog/"
                            },
                            {
                              "name": "CB Insights",
                              "type": "Analytics",
                              "url": "https://www.cbinsights.com/investor/quona-capital"
                            },
                            {
                              "name": "Crunchbase",
                              "type": "Analytics",
                              "url": "https://www.crunchbase.com/organization/quona-capital-management"
                            },
                            {
                              "name": "LinkedIn",
                              "type": "Social",
                              "url": "https://www.linkedin.com/company/quona-capital/"
                            },
                            {
                              "name": "Medium",
                              "type": "Resources",
                              "url": "https://quona-capital.medium.com/"
                            }
                          ],
                          "isLead": false
                        },
                        {
                          "id": "d109cc83-516e-4d37-a977-00d372871cea",
                          "name": "Helios Digital Ventures",
                          "foundedDate": "2004-01-01T00:00:00Z",
                          "description": "Helios Digital Ventures is the venture capital arm of Helios Investment Partners. The fund invests in early-growth, high-revenue technology companies in Africa, focusing on fintech, human capital, and emerging technologies. Helios Digital Ventures supports companies at the Series B+ stage, aiming to accelerate their growth through capital and business expertise.",
                          "category": "Investment Management",
                          "sector": "Venture Capital",
                          "tags": [],
                          "location": "London, England, United Kingdom",
                          "links": [
                            {
                              "name": "CB Insights",
                              "type": "Analytics",
                              "url": "https://www.cbinsights.com/investor/helios-investment-partners"
                            },
                            {
                              "name": "Crunchbase",
                              "type": "Analytics",
                              "url": "https://www.crunchbase.com/organization/helios-investment-partners"
                            },
                            {
                              "name": "LinkedIn",
                              "type": "Social",
                              "url": "https://www.linkedin.com/showcase/helios-digital-ventures/"
                            },
                            {
                              "name": "Pitchbook",
                              "type": "Analytics",
                              "url": "https://pitchbook.com/profiles/investor/10420-21"
                            },
                            {
                              "name": "Website",
                              "type": "Website",
                              "url": "https://www.heliosinvestment.com/our-investments/helios-digital-ventures"
                            }
                          ],
                          "isLead": false
                        },
                        {
                          "id": "89f4cea3-4fdd-448d-bab1-38a4ae0d38f4",
                          "name": "Accel",
                          "foundedDate": "1983-01-01T00:00:00Z",
                          "description": "Accel is a venture capital firm funding technology companies.",
                          "category": "Investment Management",
                          "sector": "Venture Capital",
                          "tags": [],
                          "location": "Palo Alto, California, United States",
                          "links": [
                            {
                              "name": "AngelList",
                              "type": "Analytics",
                              "url": "https://wellfound.com/company/accel-partners"
                            },
                            {
                              "name": "CB Insights",
                              "type": "Analytics",
                              "url": "https://www.cbinsights.com/investor/accel-partners"
                            },
                            {
                              "name": "Crunchbase",
                              "type": "Analytics",
                              "url": "https://www.crunchbase.com/organization/accel"
                            },
                            {
                              "name": "LinkedIn",
                              "type": "Social",
                              "url": "https://www.linkedin.com/company/accel-vc/"
                            },
                            {
                              "name": "Medium",
                              "type": "Resources",
                              "url": "https://medium.com/@Accel"
                            }
                          ],
                          "isLead": true
                        },
                        {
                          "id": "0b4668e2-6605-4769-af78-01585fe7ee3d",
                          "name": "Wintermute",
                          "foundedDate": "2017-01-01T00:00:00Z",
                          "description": "Wintermute is a global algorithmic trading firm in the digital assets space. They specialize in creating liquid and efficient markets on centralized and decentralized trading platforms, as well as off-exchange. They provide liquidity on over 50 exchanges and trading platforms. Wintermute Trading Ltd and Wintermute Asia Pte. Ltd do not engage in the management of any cryptoassets or fiat currency on behalf of investors, nor do they hold fiat currency or cryptoassets on behalf of investors or customers. They are not authorized or regulated by any regulatory authority.",
                          "category": "Financial Services",
                          "sector": "Market Making",
                          "tags": [],
                          "location": "London, England, United Kingdom",
                          "links": [
                            {
                              "name": "AngelList",
                              "type": "Analytics",
                              "url": "https://wellfound.com/company/wintermute-trading"
                            },
                            {
                              "name": "CB Insights",
                              "type": "Analytics",
                              "url": "https://www.cbinsights.com/company/wintermute-trading"
                            },
                            {
                              "name": "Crunchbase",
                              "type": "Analytics",
                              "url": "https://www.crunchbase.com/organization/wintermute-trading"
                            },
                            {
                              "name": "LinkedIn",
                              "type": "Social",
                              "url": "https://www.linkedin.com/company/wintermute-trading/"
                            },
                            {
                              "name": "Medium",
                              "type": "Resources",
                              "url": "https://medium.com/wintermute-trading"
                            }
                          ],
                          "isLead": false
                        }
                      ],
                      "projects": [
                        {
                          "id": "1eaf063a-b8dd-4cfb-95dd-a06338565720",
                          "name": "Tether",
                          "foundedDate": "2014-01-01T00:00:00Z",
                          "category": "Cryptocurrency",
                          "sector": "Stablecoins",
                          "tags": [
                            "Centralized Issuer",
                            "U.S. Dollar Stablecoin"
                          ],
                          "location": "Hong Kong S.A.R.",
                          "links": [
                            {
                              "name": "Block Explorer",
                              "type": "Block Explorer",
                              "url": "https://avascan.info/blockchain/c/address/0x9702230a8ea53601f5cd2dc00fdbc13d4df4a8c7/token"
                            },
                            {
                              "name": "Blog",
                              "type": "Content",
                              "url": "https://tether.to/press/"
                            },
                            {
                              "name": "Documentation",
                              "type": "Resources",
                              "url": "https://tether.to/wp-content/uploads/2016/06/TetherWhitePaper.pdf"
                            },
                            {
                              "name": "Etherscan",
                              "type": "Block Explorer",
                              "url": "https://etherscan.io/token/0xdac17f958d2ee523a2206206994597c13d831ec7"
                            },
                            {
                              "name": "Facebook",
                              "type": "Social",
                              "url": "https://facebook.com/tether.to"
                            }
                          ],
                          "overview": "Tether is a blockchain-based financial services company that issues fiat-pegged stablecoins, primarily USDT, which are designed to maintain a 1:1 value with fiat currencies. Its tokens are issued on multiple blockchains including Ethereum, Tron, and Solana for digital transactions and settlements.",
                          "background": "[Founded](https://blogs.wsj.com/moneybeat/2014/07/08/dollar-backed-digital-currency-aims-to-fix-bitcoins-volatility-dilemma/) in July 2014 by Brock Pierce, Craig Sellars, and Reeve Collins, Tether (USDT), originally known as \"[Realcoin](https://www.coindesk.com/markets/2014/11/20/realcoin-rebrands-as-tether-to-avoid-altcoin-association/),\" is a stablecoin that aims to keep a fixed 1:1 exchange ratio with the US Dollar (USD). Tether was one of the first stablecoins created, built upon Mastercoin ([Omni](https://www.omnilayer.org/)), a protocol layer for Bitcoin that introduced the stablecoin concept in 2012. The first tokens were [issued](https://web.archive.org/web/20220423002427/https://www.omniexplorer.info/tx/ce36efda15bc6cf99ba6a010e71b47b00a5ea2071a392839effe7ed392cf690f) on Omni in October 2014, with the project [rebranding](https://www.coindesk.com/markets/2014/11/20/realcoin-rebrands-as-tether-to-avoid-altcoin-association/) to \u201cTether\u201d in November 2014. Tether pioneered what is now known as a fiat-collateralized stablecoin model and is the most [widely transacted](https://messari.io/screener/screen/stablecoins-zjjb) stablecoin.\n\nIn January 2015, [Bitfinex](https://www.bitfinex.com/) became the [first platform](https://cointelegraph.com/news/bitfinex-adds-tether-the-first-real-world-currency-platform-on-the-bitcoin-blockchain) to enable trading of USDT.\n\nIn November 2017, Tether was [hacked](https://amycastor.com/2019/01/17/the-curious-case-of-tether-a-complete-timeline-of-events/), in which the \u201cTether Treasury\u201d wallet address was drained of ~$30.95 million in USDT tokens. While these funds were not recovered, the project team marked these stolen tokens as \u201c[unredeemable](https://www.ccn.com/tether-treasury-hacked-31-million-flagged-as-not-redeemable/).\u201d\n\nIn 2018, Bitfinex, facing an alleged $850.00 million loss due to [Crypto Capital's actions](https://messari.io/report/history-of-tether#:~:text=In%20the%20latter,told%20the%20public.), secured a line of credit from Tether. This loan was scrutinized by the New York State Attorney General (NYAG) since Tether's reserves, believed to fully back USDT, were used. In April 2019, the NYAG [revealed](https://ag.ny.gov/press-release/2019/attorney-general-james-announces-court-order-against-crypto-currency-company) conflicting transactions between Bitfinex and Tether in an alleged attempt to cover the loss. By 2021, Bitfinex claimed that it had [repaid](https://decrypt.co/56833/bitfinex-claims-its-repaid-a-750-million-loan-from-tether) the loan; however, the [NYAG found](https://ag.ny.gov/press-release/2021/attorney-general-james-ends-virtual-currency-trading-platform-bitfinexs-illegal) that Bitfinex and Tether made additional false statements to conceal the losses, ultimately leading to financial arrangements between the two to cover the losses. Tether and Bitfinex [settled](https://twitter.com/Tether_to/status/1364197571300913153) with the NYAG in February 2021, agreeing to pay an $18.50 million fine, ceasing trading activity with residents of New York (United States), and implementing \u201ca number of steps to increase transparency.\u201d Of note, a Tether [blog post](https://tether.to/en/tether-and-bitfinex-reach-settlement-with-new-york-attorney-generals-office/) states, \u201cUnder the terms of the settlement, we admit no wrongdoing.\u201d \n\nIn October 2021, the United States Commodity Futures Trading Commission (CFTC) [issued an order filing and settling charges](https://www.cftc.gov/PressRoom/PressReleases/8450-21#:~:text=The%20order%20requires%20Tether%20to,and%20CFTC%20regulations%2C%20as%20charged.&text=The%20order%20requires%20Bitfinex%20to%20pay%20a%20%241.5%20million%20civil%20monetary%20penalty.) against Tether Holdings Limited, Tether Limited, Tether Operations Limited,\u00a0and\u00a0Tether International Limited \u201cfor making untrue or misleading statements and omissions of material fact in connection with the U.S. dollar tether token (USDT) stablecoin. The order requires Tether to pay a civil monetary penalty of $41.00 million and cease and desist from further violations of the Commodity Exchange Act (CEA) and CFTC regulations, as charged.\u201d Additional case background information can be seen [here](https://www.cftc.gov/PressRoom/PressReleases/8450-21#:~:text=The%20order%20requires%20Tether%20to,and%20CFTC%20regulations%2C%20as%20charged.&text=The%20order%20requires%20Bitfinex%20to%20pay%20a%20%241.5%20million%20civil%20monetary%20penalty.).\n\nIn October 2023, long-time CTO [Paolo Ardoino](https://www.linkedin.com/in/prdn/?originalSubdomain=uk) was [appointed](https://tether.to/en/tether-appoints-paolo-ardoino-as-ceo/) as CEO of Tether, succeeding [Jean-Louis van der Velde](https://www.linkedin.com/in/jl-van-der-velde-355218228/). According to the [announcement](https://tether.to/en/tether-appoints-paolo-ardoino-as-ceo/#:~:text=October%2013%2C%202023,Officer%20for%20Holepunch.), Ardoino\u2019s CEO duties would begin in December 2023.\n\nSince 2024, Tether shifted project strategy beyond stablecoins, focusing on interoperability and broader blockchain infrastructure. Furthermore, [USDT0 debuted in October 2025]((https://mirror.xyz/tetherzero.eth/4z1kh9wE6h07zGjrKImx4Cr-VIzCpRle0VElalG0Rss)) as a new token built using LayerZero\u2019s Omnichain Fungible Token (OFT) standard on Ethereum.\n\n",
                          "primaryAsset": {
                            "id": "51f8ea5e-f426-4f40-939a-db7e05495374",
                            "serialId": 140,
                            "symbol": "USDT",
                            "name": "Tether",
                            "slug": "tether",
                            "category": "Cryptocurrency",
                            "sector": "Stablecoins",
                            "tags": [
                              "Centralized Issuer",
                              "U.S. Dollar Stablecoin"
                            ]
                          },
                          "secondaryAssets": [],
                          "organizations": [
                            "915ea9f4-a376-490a-ae0d-9957a6339673",
                            "f2c484a2-1544-4c34-9750-8f6f56fffe1b"
                          ],
                          "isLead": false
                        }
                      ],
                      "persons": null
                    },
                    {
                      "fundingRoundId": "59c21e3c-b335-484f-8512-73fa79697f22",
                      "organizations": null,
                      "projects": null,
                      "persons": [
                        {
                          "id": "f3aa3253-badc-4cb6-bf33-d9ab3529ef7b",
                          "name": "Nomatic ",
                          "title": "Investing at 4RCapital",
                          "links": [
                            {
                              "name": "Twitter",
                              "type": "Social",
                              "url": "https://twitter.com/Nomaticcap"
                            }
                          ],
                          "isLead": false
                        },
                        {
                          "id": "e2724698-4ff9-4603-a3fe-aa7999f389b9",
                          "name": "entropicwonder ",
                          "title": "",
                          "links": [
                            {
                              "name": "Twitter",
                              "type": "Social",
                              "url": "https://x.com/entropicwonder"
                            }
                          ],
                          "isLead": false
                        },
                        {
                          "id": "1926465a-bac7-48a3-b4d8-a90cc0636bf4",
                          "name": "0xnomnomnom ",
                          "title": "",
                          "links": [
                            {
                              "name": "Twitter",
                              "type": "Social",
                              "url": "https://x.com/0xnomnomnom"
                            }
                          ],
                          "isLead": false
                        },
                        {
                          "id": "03c5a0b2-f7d7-4bba-b12e-7504f77b69cb",
                          "name": "0xBroze ",
                          "title": "",
                          "links": [
                            {
                              "name": "Twitter",
                              "type": "Social",
                              "url": "https://x.com/0xBroze"
                            }
                          ],
                          "isLead": false
                        }
                      ]
                    }
                  ],
                  "metadata": {
                    "limit": 10,
                    "page": 1,
                    "totalRows": 82124,
                    "totalPages": 8213
                  }
                }
              }
            },
            "description": "Default response"
          },
          "400": {
            "content": {
              "application/json": {
                "schema": {
                  "properties": {
                    "data": {},
                    "error": {
                      "type": "string"
                    }
                  },
                  "required": [
                    "data"
                  ],
                  "type": "object"
                }
              }
            },
            "description": "Bad Request"
          },
          "403": {
            "content": {
              "application/json": {
                "schema": {
                  "properties": {
                    "data": {},
                    "error": {
                      "type": "string"
                    }
                  },
                  "required": [
                    "data"
                  ],
                  "type": "object"
                }
              }
            },
            "description": "Forbidden"
          },
          "500": {
            "content": {
              "application/json": {
                "schema": {
                  "properties": {
                    "data": {},
                    "error": {
                      "type": "string"
                    }
                  },
                  "required": [
                    "data"
                  ],
                  "type": "object"
                }
              }
            },
            "description": "Internal Server Error"
          }
        },
        "security": [
          {
            "apiKey": []
          }
        ],
        "summary": "GetRoundsInvestors",
        "tags": [
          "funding/FundingRound"
        ]
      }
    }
  },
  "components": {
    "schemas": {
      "FundingRound": {
        "properties": {
          "amountRaisedUSD": {
            "format": "double",
            "type": "number"
          },
          "announcementDate": {
            "format": "date-time",
            "type": "string"
          },
          "announcements": {
            "items": {
              "$ref": "#/components/schemas/Announcement"
            },
            "type": "array"
          },
          "fundedEntity": {
            "$ref": "#/components/schemas/FundingEntity"
          },
          "id": {
            "type": "string"
          },
          "isTokenFunded": {
            "type": "boolean"
          },
          "stage": {
            "enum": [
              "Seed",
              "Early Stage",
              "Late Stage",
              "Public Equity Offering",
              "Post Public Equity",
              "Miscellaneous"
            ],
            "type": "string"
          },
          "type": {
            "enum": [
              "Accelerator",
              "Debt Financing",
              "Extended Pre Seed",
              "Extended Seed",
              "Extended Series A",
              "Extended Series B",
              "Extended Series C",
              "Extended Series D",
              "Grant",
              "ICO",
              "IPO",
              "Post IPO",
              "Post IPO Debt",
              "Pre Seed",
              "Pre Series A",
              "Pre Series B",
              "Private Token Sale",
              "Public Token Sale",
              "Seed",
              "Series A",
              "Series B",
              "Series C",
              "Series D",
              "Series E",
              "Series F",
              "Series G",
              "Series H",
              "Strategic",
              "Treasury Diversification",
              "Undisclosed"
            ],
            "type": "string"
          }
        },
        "required": [
          "announcementDate",
          "announcements",
          "fundedEntity",
          "id",
          "isTokenFunded",
          "stage",
          "type"
        ],
        "type": "object"
      },
      "Investors": {
        "properties": {
          "fundingRoundId": {
            "type": "string"
          },
          "organizations": {
            "items": {
              "$ref": "#/components/schemas/InvestorOrganization"
            },
            "type": "array"
          },
          "persons": {
            "items": {
              "$ref": "#/components/schemas/InvestorPerson"
            },
            "type": "array"
          },
          "projects": {
            "items": {
              "$ref": "#/components/schemas/InvestorProject"
            },
            "type": "array"
          }
        },
        "required": [
          "fundingRoundId",
          "organizations",
          "persons",
          "projects"
        ],
        "type": "object"
      },
      "AcquisitionDeal": {
        "properties": {
          "acquiredEntity": {
            "$ref": "#/components/schemas/FundingEntity"
          },
          "acquiringEntity": {
            "$ref": "#/components/schemas/FundingEntity"
          },
          "announcementDate": {
            "format": "date-time",
            "type": "string"
          },
          "announcements": {
            "items": {
              "$ref": "#/components/schemas/Announcement"
            },
            "type": "array"
          },
          "id": {
            "type": "string"
          },
          "status": {
            "enum": [
              "Announced",
              "Completed",
              "Canceled"
            ],
            "type": "string"
          },
          "transactionAmountUSD": {
            "format": "double",
            "type": "number"
          }
        },
        "required": [
          "acquiredEntity",
          "acquiringEntity",
          "announcementDate",
          "announcements",
          "id",
          "status"
        ],
        "type": "object"
      },
      "Fund": {
        "properties": {
          "amountRaisedUSD": {
            "format": "double",
            "type": "number"
          },
          "announcementDate": {
            "format": "date-time",
            "type": "string"
          },
          "announcements": {
            "items": {
              "$ref": "#/components/schemas/Announcement"
            },
            "type": "array"
          },
          "id": {
            "type": "string"
          },
          "name": {
            "type": "string"
          }
        },
        "required": [
          "announcementDate",
          "announcements",
          "id",
          "name"
        ],
        "type": "object"
      },
      "FundManagers": {
        "properties": {
          "fundId": {
            "type": "string"
          },
          "organizations": {
            "items": {
              "$ref": "#/components/schemas/Organization"
            },
            "type": "array"
          },
          "persons": {
            "items": {
              "$ref": "#/components/schemas/Person"
            },
            "type": "array"
          },
          "projects": {
            "items": {
              "$ref": "#/components/schemas/Project"
            },
            "type": "array"
          }
        },
        "required": [
          "fundId",
          "organizations",
          "persons",
          "projects"
        ],
        "type": "object"
      },
      "Project": {
        "properties": {
          "background": {
            "type": "string"
          },
          "category": {
            "type": "string"
          },
          "foundedDate": {
            "format": "date-time",
            "type": "string"
          },
          "id": {
            "type": "string"
          },
          "links": {
            "items": {
              "$ref": "#/components/schemas/fundingLink"
            },
            "type": "array"
          },
          "location": {
            "type": "string"
          },
          "name": {
            "type": "string"
          },
          "organizations": {
            "items": {
              "type": "string"
            },
            "type": "array"
          },
          "overview": {
            "type": "string"
          },
          "primaryAsset": {
            "$ref": "#/components/schemas/fundingAsset"
          },
          "secondaryAssets": {
            "items": {
              "type": "string"
            },
            "type": "array"
          },
          "sector": {
            "type": "string"
          },
          "tags": {
            "items": {
              "type": "string"
            },
            "type": "array"
          }
        },
        "required": [
          "background",
          "id",
          "links",
          "organizations",
          "overview",
          "secondaryAssets",
          "tags"
        ],
        "type": "object"
      },
      "Pagination": {
        "properties": {
          "limit": {
            "format": "int64",
            "type": "integer"
          },
          "page": {
            "format": "int64",
            "type": "integer"
          },
          "totalPages": {
            "format": "int64",
            "type": "integer"
          },
          "totalRows": {
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "limit",
          "page",
          "totalPages",
          "totalRows"
        ],
        "type": "object"
      },
      "Organization": {
        "properties": {
          "category": {
            "type": "string"
          },
          "description": {
            "type": "string"
          },
          "foundedDate": {
            "format": "date-time",
            "type": "string"
          },
          "id": {
            "type": "string"
          },
          "links": {
            "items": {
              "$ref": "#/components/schemas/fundingLink"
            },
            "type": "array"
          },
          "location": {
            "type": "string"
          },
          "name": {
            "type": "string"
          },
          "sector": {
            "type": "string"
          },
          "tags": {
            "items": {
              "type": "string"
            },
            "type": "array"
          }
        },
        "required": [
          "id",
          "links",
          "tags"
        ],
        "type": "object"
      },
      "FundingEntity": {
        "type": "object",
        "description": "Schema for FundingEntity",
        "properties": {},
        "additionalProperties": true
      },
      "InvestorProject": {
        "type": "object",
        "description": "Schema for InvestorProject",
        "properties": {},
        "additionalProperties": true
      },
      "fundingLink": {
        "type": "object",
        "description": "Schema for fundingLink",
        "properties": {},
        "additionalProperties": true
      },
      "InvestorPerson": {
        "type": "object",
        "description": "Schema for InvestorPerson",
        "properties": {},
        "additionalProperties": true
      },
      "Announcement": {
        "type": "object",
        "description": "Schema for Announcement",
        "properties": {},
        "additionalProperties": true
      },
      "InvestorOrganization": {
        "type": "object",
        "description": "Schema for InvestorOrganization",
        "properties": {},
        "additionalProperties": true
      },
      "fundingAsset": {
        "type": "object",
        "description": "Schema for fundingAsset",
        "properties": {},
        "additionalProperties": true
      },
      "Person": {
        "type": "object",
        "description": "Schema for Person",
        "properties": {},
        "additionalProperties": true
      }
    },
    "securitySchemes": {
      "apiKey": {
        "in": "header",
        "name": "X-Messari-API-Key",
        "type": "apiKey"
      }
    }
  }
}