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

# Get All Aggregation Sources

> List all review aggregation sources (monitoring URLs) configured for the business.

```
get_all_aggregation_sources
```

## Description

Returns all review monitoring URLs and sources configured for the authenticated business. Each source represents a URL that Birdeye monitors for new reviews.

## Parameters

None.

## Example Usage

```
What review sources is Birdeye monitoring for my business?
```

```
List all my aggregation sources and their current status.
```

## Source Statuses

| Status Code | Description                                      |
| ----------- | ------------------------------------------------ |
| `4`         | Completed — source is active and being monitored |
| `3`         | In progress — source is being set up             |

## Example Response

```json theme={null}
{
  "sources": [
    {
      "id": "agg_001",
      "sourceAlias": "google",
      "sourceName": "Google",
      "sourceUrl": "https://www.google.com/maps/place/acme-dental",
      "status": 4
    },
    {
      "id": "agg_002",
      "sourceAlias": "our_website",
      "sourceName": "Direct Feedback",
      "sourceUrl": "https://acmedental.com/reviews",
      "status": 4
    },
    {
      "id": "agg_003",
      "sourceAlias": "citysearch",
      "sourceName": "CitySearch",
      "sourceUrl": "https://www.citysearch.com/profile/acme-dental",
      "status": 3
    }
  ]
}
```

## Notes

* `sourceAlias` values (e.g., `"google"`, `"direct_feedback"`) can be used as filter values in other tools that accept `sourceAliases` parameters.
