# Fetch Connected Account Details

```http
GET https://api.synup.com/api/v4/connected-accounts/{connectedAccountId}/details
```

This API retrieves detailed information about a specific connected account.

**Behavior:**

- Returns account details only if the account is currently connected.
- If the account has been disconnected, no data will be returned.

Source: https://developer.synup.com/api/connected-accounts/fetch-connected-account-details

## Path parameters

| Name | Type | Required | Description |
| --- | --- | --- | --- |
| `connectedAccountId` | string | required | Unique identifier of the connected account |

## Header parameters

| Name | Type | Required | Description |
| --- | --- | --- | --- |
| `Content-Type` | string | required |  |

## Example request

```bash
curl -X GET 'https://api.synup.com/api/v4/connected-accounts/:connectedAccountId/details' \
  -H 'Authorization: API YOUR_API_KEY' \
  -H 'Content-Type: application/json'
```

## Responses

| Status | Description |
| --- | --- |
| `200` | Successfully retrieved connected account details |
| `401` | Unauthorized - Invalid API key |
| `404` | Connected account not found |
| `500` | Internal server error |
