# GET /intelligence/entity/{entity}

**Operation ID:** `GetEntityIntelligence`

Get intelligence about an entity

Returns top-level entity information, including associated tags, social links, and metadata.

## Parameters

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

## Responses

- **200**: OK
  **Schema**: ([Entity](https://arkm.com/llms/schemas/Entity.md))

**Example:**
```json
{
  "crunchbase": "https://www.crunchbase.com/organization/binance",
  "customized": false,
  "id": "binance",
  "linkedin": "https://www.linkedin.com/company/binance",
  "name": "Binance",
  "note": "",
  "populatedTags": [
    {
      "disablePage": false,
      "excludeEntities": false,
      "id": "proof-of-reserves",
      "label": "Binance Proof of Reserves",
      "rank": 20,
      "tagParams": "Binance"
    }
  ],
  "service": null,
  "twitter": "https://twitter.com/binance",
  "type": "cex",
  "website": "https://binance.com"
}
```
- **400**: Bad Request
- **500**: Internal Server Error

## Example

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