# Get declining search queries

**Publié le** : 2026-05-08
**Catégorie** : SEO & Analytics

## `GET /integrations/google/lost-queries`

**Get declining search queries**

Returns search queries with decreasing click counts compared to the previous period.

Required permissions: `analytics.gsc`

### Responses

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


### Response Example

```json
{
  "data": [
    {
      "query": "free cms",
      "clicks": 50,
      "impressions": 3200,
      "ctr": 0.016,
      "position": 22.5,
      "clicksChange": -35,
      "clicksChangePercent": -41.2
    }
  ]
}
```

---