## Count `client.contacts.count(RequestOptionsoptions?): ContactCountResponse` **get** `/api/v2/contacts/count` Get the total number of contacts ### Returns - `ContactCountResponse` - `count?: number` Total number of contacts ### Example ```typescript import SendblueAPI from 'sendblue'; const client = new SendblueAPI({ apiKey: process.env['SENDBLUE_API_API_KEY'], // This is the default and can be omitted apiSecret: process.env['SENDBLUE_API_API_SECRET'], // This is the default and can be omitted }); const response = await client.contacts.count(); console.log(response.count); ```