> For the complete documentation index, see [llms.txt](https://docs.millioncloud.org/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.millioncloud.org/public-api/million-community-projects.md).

# Million Community Projects

{% hint style="warning" %}
Features aren't implemented yet. Next release will come soon !
{% endhint %}

## Community projects List

<mark style="color:blue;">`GET`</mark> `https://api.millioncloud.org/community-projects`

List all the community projects referenced by MillionTokenCloud.\
Want to add your project to the list ? A form will be made.

#### Query Parameters

| Name      | Type  | Description                              |
| --------- | ----- | ---------------------------------------- |
| tags\_but | array | List projects that don't have this tags. |
| tags      | array | Used to filter projects by tags.         |

{% tabs %}
{% tab title="200 Cake successfully retrieved." %}

```
[{    
    "id": "x19y2ue2a0jc",
    "url": "https://milliontoken.cloud",
    "name": "milliontoken.cloud",
    "name_slug": "milliontoken-cloud",
    "description-short": "Provide resources and APIs endpoints for the MM Community.",
    "description": "Provide resources and APIs endpoints for the MM Community.",    
    "date_added_at": "2021-09-11",
    "date_edited_at": "2021-09-11",
    "tags": [
        "api",
        "data",
        "documentation"
    ],
    "social-links": {
        "twitter": "",
        "facebook": "",
        "reddit": "",
        "medium": "",
        "instagram": "",
        "pinterest": "",
        "discord": "",
        "telegram": "",
        "tumblr": ""
    }
}]
```

{% endtab %}

{% tab title="404 Could not find a cake matching this query." %}

```
{ "message": "No community projects found." }
```

{% endtab %}
{% endtabs %}

## Community project by ID

<mark style="color:blue;">`GET`</mark> `https://api.millioncloud.org/community-projects/:id`

#### Path Parameters

| Name | Type   | Description                    |
| ---- | ------ | ------------------------------ |
| id   | string | Get a community project by ID. |

{% tabs %}
{% tab title="200 " %}

```
{    
    "id": "x19y2ue2a0jc",
    "url": "https://milliontoken.cloud",
    "name": "milliontoken.cloud",
    "name_slug": "milliontoken-cloud",
    "description-short": "Provide resources and APIs endpoints for the MM Community.",
    "description": "Provide resources and APIs endpoints for the MM Community.",    
    "date_added_at": "2021-09-11",
    "date_edited_at": "2021-09-11",
    "tags": [
        "api",
        "data",
        "documentation"
    ],
    "social-links": {
        "twitter": "",
        "facebook": "",
        "reddit": "",
        "medium": "",
        "instagram": "",
        "pinterest": "",
        "discord": "",
        "telegram": "",
        "tumblr": ""
    }
}
```

{% endtab %}
{% endtabs %}

## Community project by Slug

<mark style="color:blue;">`GET`</mark> `https://api.millioncloud.org/community-projects/:slug`

#### Path Parameters

| Name | Type   | Description                      |
| ---- | ------ | -------------------------------- |
| slug | string | Get a community project by slug. |

{% tabs %}
{% tab title="200 " %}

```
```

{% endtab %}
{% endtabs %}

<mark style="color:blue;">`GET`</mark> `https://api.millioncloud.org/community-projects/:id`

#### Path Parameters

| Name | Type   | Description                    |
| ---- | ------ | ------------------------------ |
| id   | string | Get a community project by ID. |

{% tabs %}
{% tab title="200 " %}

```
```

{% endtab %}
{% endtabs %}
