# GET /intelligence/entity_predictions/{entity}

**Operation ID:** `GetEntityPredictions`

Get predictions for an entity

Returns predicted addresses for the specified entity. These predictions are generated using machine learning algorithms to identify addresses that may belong to the entity based on transaction patterns and other blockchain data. Returns up to 1000 predictions per entity, sorted by USD balance.

## Parameters

| Name | In | Type | Required | Description |
|------|-----|------|----------|-------------|
| `entity` | path | string | Yes | The entity ID to retrieve address predictions for. Example: `"binance"` |

## Responses

- **200**: OK
  **Schema**: (array)
    - **(items)**: ([EntityPrediction](https://arkm.com/llms/schemas/EntityPrediction.md))
- **400**: Bad Request
- **500**: Internal Server Error

## Example

```bash
curl -X GET "https://api.arkm.com/intelligence/entity_predictions/binance" \
  -H "API-Key: YOUR_API_KEY"
```
