# Get basic site info

**Publié le** : 2026-05-08
**Catégorie** : Settings & Config

## `GET /site/info`

**Get basic site info**

Returns the site name, domain, slug, logo, and active status.

Required permissions: `sites.view`

### Responses

| Status | Description |
| --- | --- |
| `200` | Successful response |
| `401` | Unauthorized — invalid or missing API token |
| `403` | Forbidden — insufficient permissions |


### Examples

```bash
curl https://api.lynkow.com/v1/site/info \
  -H "Authorization: Bearer $API_TOKEN"
```

### Response Example

```json
{
  "data": {
    "id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
    "name": "My Website",
    "domain": "www.example.com",
    "slug": "my-website",
    "logoUrl": "https://cdn.lynkow.com/sites/abc123/logo.png",
    "faviconUrl": "https://cdn.lynkow.com/sites/abc123/favicon.ico",
    "isActive": true
  }
}
```

---