Skip to main content
GET
/
{instance}
/
lids
/
count
Get count of known LID mappings
curl --request GET \
  --url https://app.hypersender.com/api/whatsapp/v2/{instance}/lids/count \
  --header 'Authorization: Bearer <token>'
{
  "count": 123
}
Returns the total number of linked-identifier mappings currently known by this instance. This is useful when you want to:
  • Measure how many conversions are already available.
  • Estimate pagination before listing all mappings.
  • Monitor whether your instance is learning new contact mappings over time.

Response Example

{
  "count": 123
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Headers

Accept
string

application/json

Example:

"application/json"

Content-Type
string

application/json

Example:

"application/json"

Path Parameters

instance
string
required

Instance UUID copied from hypersender dashboard

Example:

"{{ instance_id }}"

Response

Successful response

count
integer
required

Number of known mappings for the instance

Example:

123