## Get seat count **get** `/api/v2/seats/count` Returns the number of seats for the authenticated company. ### Query Parameters - `email: optional string` Optional exact-match filter on seat email ### Returns - `count: optional number` ### Example ```http curl https://api.sendblue.co/api/v2/seats/count \ -H "sb-api-key-id: $SENDBLUE_API_API_KEY" \ -H "sb-api-secret-key: $SENDBLUE_API_API_SECRET" ``` #### Response ```json { "count": 12 } ```