> ## Documentation Index
> Fetch the complete documentation index at: https://developer.tailwind.zone/llms.txt
> Use this file to discover all available pages before exploring further.

# Get DAO by Mint

> Retrieve detailed information about a specific DAO using its mint address

```bash theme={null}
GET https://api-daos.fly.dev/daos/{dao_mint}
```

## Path Parameters

| Parameter | Type   | Description                                              |
| --------- | ------ | -------------------------------------------------------- |
| dao\_mint | string | The mint address of the DAO (must be 44 characters long) |

## Response Fields

| Field       | Type   | Description                            |
| ----------- | ------ | -------------------------------------- |
| mint        | string | The mint address of the DAO            |
| name        | string | The name of the DAO                    |
| description | string | A description of the DAO               |
| image       | string | IPFS URL to the DAO's image            |
| website     | string | The DAO's website URL                  |
| telegram    | string | The DAO's Telegram link (can be null)  |
| twitter     | string | The DAO's Twitter handle (can be null) |

## Example Request

```bash theme={null}
curl https://api-daos.fly.dev/daos/HeLp6NuQkmYB4pYWo2zYs22mESHXPQYzXbB8n4V98jwC
```

## Example Response

```json theme={null}
{
  "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 Code | Description                       | Response Body                                                          |
| ----------- | --------------------------------- | ---------------------------------------------------------------------- |
| 400         | Missing or invalid mint parameter | `{ "error": "Dao mint is required" }` or `{ "error": "Invalid mint" }` |
| 404         | DAO not found in database         | `{ "error": "Dao not found" }`                                         |
| 500         | Internal server error             | `{ "error": "Failed to fetch dao", "details": "error message" }`       |

### Error Response Examples

#### Missing Mint Parameter

```json theme={null}
{
  "error": "Dao mint is required"
}
```

#### Invalid Mint Format

```json theme={null}
{
  "error": "Invalid mint"
}
```

#### DAO Not Found

```json theme={null}
{
  "error": "Dao not found"
}
```

#### Server Error

```json theme={null}
{
  "error": "Failed to fetch dao",
  "details": "Error message details"
}
```
