v1

latestOpenAPI 3.0.02026-07-242235189.3 KB

Phone Data Breaches

post/phone-data-breaches

Request body

transaction_idstring required

The unique identifier of this transaction. Duplicated value are not allowed.

phone_numberstring required

Phone number you want to lookup. The expected format is international, with leading country-code and without zeros or '+' symbol.

Response

200

is_valid_formatboolean
data_breaches_countinteger
data_breaches_first_breachstring
data_breaches_last_breachstring

Example response

{
  "is_valid_format": true,
  "data_breaches_count": 5,
  "data_breaches_first_breach": "2005-01-01",
  "data_breaches_last_breach": "2023-01-02",
  "data_breaches_data": [
    {
      "id": "41720",
      "date": "2023-03-09",
      "title": "A Data breach name"
    }
  ],
  "data_breaches_data_lists": {
    "names": [
      {
        "first_name": "Peter",
        "last_name": "Parker",
        "count": 1
      }
    ],
    "emails": [
      {
        "email": "an_email@gmail.com",
        "count": 1
      }
    ],
    "phones": [
      {
        "phone_number": "39349xxxxxxx",
        "count": 1
      }
    ]
  }
}