> For the complete documentation index, see [llms.txt](https://dev.smarttask.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://dev.smarttask.io/endpoints/organization/fetch-organizations.md).

# Fetch Organizations

## Get Organizations

<mark style="color:blue;">`GET`</mark> `https://ext-v2.smarttask.io/v1.0/organization/list`

This endpoint allows you to get all organizations a user is associated with.

#### Headers

| Name          | Type   | Description                 |
| ------------- | ------ | --------------------------- |
| Authorization | string | Authentication bearer token |

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

```
[
    {
        "organization_id": 1,
        "name": "Hitech Pvt Ltd"
    }
]
```

Please refer to [Organization](/models/company.md) for more on the model received in response
{% endtab %}
{% endtabs %}
