# Sources Mida can read from

> GET /me/sources

Source: https://mockflow.com/developers/reference/me/list-sources

**GET** `https://api.mockflow.com/v1/me/sources`  
Scopes: `user:read`

**curl**

```bash
curl https://api.mockflow.com/v1/me/sources \
  -H "Authorization: Bearer $MOCKFLOW_API_KEY"
```

**JavaScript**

```javascript
const response = await fetch("https://api.mockflow.com/v1/me/sources", {
  method: "GET",
  headers: {
    Authorization: `Bearer ${process.env.MOCKFLOW_API_KEY}`
  }
});

const data = await response.json();
```

**Python**

```python
import os, requests

response = requests.get(
    "https://api.mockflow.com/v1/me/sources",
    headers={"Authorization": f"Bearer {os.environ['MOCKFLOW_API_KEY']}"},
)

response.raise_for_status()
data = response.json()
```

**200**

```json
{
  "data": [
    {
      "id": "string",
      "name": "Q4 Launch Planning",
      "category": "string",
      "description": "string",
      "connected": false,
      "connectUrl": "https://app.mockflow.com/board/brd_3f9e2a"
    }
  ],
  "note": "string"
}
```

**429**

```json
{
  "error": {
    "code": "rate_limited",
    "message": "Too many requests.",
    "docsUrl": "https://mockflow.com/developers/concepts/errors#rate_limited"
  },
  "requestId": "req_45d49816999bac40"
}
```

The connectors (Jira, Trello, Slack, Notion and the rest) Mida can pull from in the editor, and which ones this person has connected. Connecting is a browser OAuth flow; the API lists.

### Authorization

- `Authorization` (string, required): `Bearer <key>`. The key needs `user:read` scope. Create and manage keys in the [developer console](/developers/console/); what each scope unlocks is on the [scopes page](/developers/concepts/scopes).

### Response

- `data` (object[]): - `id` (string)
  - `name` (string)
  - `category` (string | null)
  - `description` (string)
  - `connected` (boolean)
  - `connectUrl` (string)
- `note` (string)

### Errors

- 429 `rate_limited`: Too many requests.
