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

# Get Integration Icon

> Retrieve the icon URL for an integration

Returns the icon URL for an integration. If the integration has no icon, `iconUrl` is `null`.

## Base URL

```
https://api.langdock.com/integrations/v1/{integrationId}/icon
```

<Warning>
  **Dedicated deployments**

  Replace `api.langdock.com` with `<your-deployment-url>/api/public` in all requests.
</Warning>

## Required Scopes

This endpoint requires the `INTEGRATION_API` scope.

## Parameters

| Parameter       | Type   | Required | Description             |
| --------------- | ------ | -------- | ----------------------- |
| `integrationId` | string | Yes      | UUID of the integration |

## Example

```javascript theme={null}
const axios = require("axios");

async function getIcon(integrationId) {
  const response = await axios.get(
    `https://api.langdock.com/integrations/v1/${integrationId}/icon`,
    {
      headers: {
        Authorization: "Bearer YOUR_API_KEY"
      }
    }
  );

  console.log("Icon URL:", response.data.iconUrl);
}

getIcon("550e8400-e29b-41d4-a716-446655440000");
```

## Response Format

### Success Response (200 OK)

```typescript theme={null}
{
  iconUrl: string | null;
}
```

## Error Handling

| Status Code | Description                   |
| ----------- | ----------------------------- |
| 400         | Invalid integration ID format |
| 401         | Invalid or missing API key    |
| 403         | No access to this integration |
| 404         | Integration not found         |
| 429         | Rate limit exceeded           |

<Info>
  Langdock intentionally blocks browser-origin requests to protect your API key and ensure your applications remain secure. For more information, please see our guide on [API Key Best Practices](/en/admin/ai-adoption-and-rollout/best-practices/api-key-best-practices).
</Info>
