January 2026 Update

๐Ÿ”ฅ January Product Update: Auto Top Up keeps your API balance funded automaticallys, you can programmatically delete customer data via a new Delete Data API, and Phone to Name now returns enriched identity signals like Date of Birth and Addresses.


๐Ÿ’ณ Auto Top Up

Auto Top Up helps keep your API key balance funded automatically, so you can avoid failed requests caused by low credit.

๐Ÿ” Key Features

  • ๐Ÿ’ณ Payment methods management: Add and manage cards directly from the Payment Methods section.
  • โš™๏ธ Configurable rules: Set a low-balance threshold and top up amount.
  • ๐Ÿ’ฐ Monthly maximum limit: Control spending with a configurable monthly cap.

๐Ÿ—‘๏ธ Delete Data API (New endpoint)

You can now request deletion of previously enriched data referring to a specific claim and customer_id.

๐Ÿ” Key Features

  • ๐Ÿงฉ Claim-specific deletion: Request deletion for a single product/claim (for example score, email, phone, domain, bot_detection, login).
  • ๐Ÿงพ Simple inputs: Provide the claim and customerId of the previous call you wanted to delete.
  • โณ Asynchronous processing: A successful response confirms the request was accepted, and deletion is processed in the background.

๐Ÿ“Š Example Output

{
  "status": "ok",
  "message": "deletion request accepted - the deletion will be processed shortly"
}

๐Ÿ“ฑ Phone to Name: New signals

The Phone to Name endpoint now returns enriched identity information, including Date of Birth and Addresses linked to a phone number.

๐Ÿ” Key Features

  • ๐Ÿงพ New signals: names_dobs and names_addresses are now included when found.
  • ๐Ÿ”Ž Multi-source enrichment: Each value is returned with an occurrence count across sources.
  • ๐Ÿงฉ Same inputs: Continue using transaction_id and phone as input.

๐Ÿ“Š Example Output

{
  "names_dobs": [
    {
      "value": "1985-05-15",
      "count": 1
    }
  ],
  "names_addresses": [
    {
      "value": "Via Gustavo Fara, 9",
      "count": 2
    }
  ]
}

๐Ÿ“š Resources