# 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. Endpoint: GET /intelligence/entity_predictions/{entity} Version: 1.0.0 Security: ApiKeyAuth ## Path parameters: - `entity` (string, required) The entity ID to get predictions for. ## Response 200 fields (application/json): - `address` (string) The blockchain address Example: "0xebDce3B3775c5683c96Ca754e4130Ea5175De85E" - `entityID` (string) The predicted entity ID for this address Example: "binance" - `usdBalance` (number) The approx USD balance for this address Example: 1337879888.38 ## Response 400 fields (application/json): - `error` (string) Example: "Bad request" ## Response 401 fields (application/json): - `error` (string) Example: "API key missing or invalid" ## Response 404 fields (application/json): - `error` (string) Example: "Not found"