Skip to main content
GET
/
10dlc
/
brands
List 10DLC Brands on your account
curl --request GET \
  --url https://api.wavix.com/v3/10dlc/brands
{
  "items": [
    {
      "brand_id": "BM20QP9",
      "city": "Miami",
      "company_name": "Company legal name",
      "country": "US",
      "created_at": "2024-07-24T08:10:49.000Z",
      "dba_name": "New Brand",
      "ein_taxid": "999999999",
      "ein_taxid_country": "US",
      "email": "email@brand.com",
      "entity_type": "PRIVATE_PROFIT",
      "feedback": null,
      "first_name": "John",
      "last_name": "Dow",
      "mock": false,
      "phone_number": "12123450099",
      "state_or_province": "FL",
      "status": "VERIFIED",
      "stock_exchange": null,
      "stock_symbol": null,
      "street_address": "10, Street Name",
      "updated_at": "2024-07-24T08:29:09.000Z",
      "vertical": "HEALTHCARE",
      "website": "https://brand.com",
      "zip": "12345"
    }
  ],
  "pagination": {
    "current_page": 1,
    "per_page": 25,
    "total": 1,
    "total_pages": 1
  }
}

Authorizations

appid
string
query
required

An API key to authorize your request

Query Parameters

dba_name
string

Filter results by the brand name

Example:

"Brand"

company_name
string

Filter results by the company legal name

Example:

"Company"

entity_type
string

Filter results by the business entity type

Example:

"PRIVATE_PROFIT"

status
string

Filter results by Brand Identity verification status

Example:

"VERIFIED"

country
string

Filter results by a Brand’s registration country

Example:

"US"

show_deleted
boolean
default:false

Use true to query active and deleted brands. By default, the deleted Brands are excluded from the results.

Example:

false

ein_taxid
string

ein_taxid

Example:

"999999999"

mock
boolean
default:false

Use true to query the mock Brands on your account only

Example:

false

created_before
string

Filter results by specifying the end date for the Brand creation date range in the yyyy-mm-dd format

Example:

"2024-08-22T00:00:00.000Z"

created_after
string

Filter results by specifying the start date for the Brand creation date range in the yyyy-mm-dd format

Example:

"2024-08-22T00:00:00.000Z"

page
integer

The page number

Example:

1

per_page
integer

The number of records per page

Example:

25

Response

A list of 10DLC Brands

items
10DLCBrand · object[]
required

A paginated list of 10DLC Brands matching the filter criteria

pagination
object
required

Pagination details

I