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

# GET /me/projects

**URL:** [https://xapi.duelduck.com/me/projects](https://xapi.duelduck.com/me/projects)

Returns all projects belonging to the authenticated partner.

### **Parameters**

| Name          | Type   | Header        | Required | Description                |
| :------------ | :----- | :------------ | :------- | :------------------------- |
| Authorization | string | Authorization | yes      | Authorization Bearer token |

### **Responses**

#### Code 200

Partner projects.

```text theme={"dark"}
[
  {
    "api_key": "string",
    "created_at": "string",
    "id": "string",
    "is_self_resolved_enabled": true,
    "is_users_duels_enabled": true,
    "name": "string",
    "partner_id": "string",
    "site_url": "string",
    "status": 1,
    "status_history": [
      {
        "changed_at": "string",
        "id": 0,
        "project_id": "string",
        "status": 1
      }
    ],
    "updated_at": "string",
    "wallet_address": "string"
  }
]
```

#### Code 401

Unauthorized.

```text theme={"dark"}
{
  "message": "string",
  "status": 0
}
```

#### Code 403

Partner permission required.

```text theme={"dark"}
{
  "message": "string",
  "status": 0
}
```
