Skip to main content
GET https://api-daos.fly.dev/daos/{dao_mint}

Path Parameters

ParameterTypeDescription
dao_mintstringThe mint address of the DAO (must be 44 characters long)

Response Fields

FieldTypeDescription
mintstringThe mint address of the DAO
namestringThe name of the DAO
descriptionstringA description of the DAO
imagestringIPFS URL to the DAO’s image
websitestringThe DAO’s website URL
telegramstringThe DAO’s Telegram link (can be null)
twitterstringThe DAO’s Twitter handle (can be null)

Example Request

curl https://api-daos.fly.dev/daos/HeLp6NuQkmYB4pYWo2zYs22mESHXPQYzXbB8n4V98jwC

Example Response

{
  "mint": "HeLp6NuQkmYB4pYWo2zYs22mESHXPQYzXbB8n4V98jwC",
  "name": "ai16z",
  "description": "ai16z is the first AI VC fund, fully managed by Marc AIndreessen with recommendations from members of the DAO.",
  "image": "https://ipfs.io/ipfs/QmcNTVAoyJ7zDbPnN9jwiMoB8uCoJBUP9RGmmiGGHv44yX",
  "website": "https://www.daos.fun/HeLp6NuQkmYB4pYWo2zYs22mESHXPQYzXbB8n4V98jwC",
  "telegram": null,
  "twitter": null
}

Error Responses

Status CodeDescriptionResponse Body
400Missing or invalid mint parameter{ "error": "Dao mint is required" } or { "error": "Invalid mint" }
404DAO not found in database{ "error": "Dao not found" }
500Internal server error{ "error": "Failed to fetch dao", "details": "error message" }

Error Response Examples

Missing Mint Parameter

{
  "error": "Dao mint is required"
}

Invalid Mint Format

{
  "error": "Invalid mint"
}

DAO Not Found

{
  "error": "Dao not found"
}

Server Error

{
  "error": "Failed to fetch dao",
  "details": "Error message details"
}