{
  "generated_at": "2026-04-24T15:01:35.625676+00:00",
  "slug": "api-tanantor-com-v1-x402-contact-hygiene-batch100",
  "title": "Tanantor \u00b7 Batch Contact Hygiene (100)",
  "url": "https://api.tanantor.com/v1/x402/contact.hygiene.batch100",
  "category": "tools",
  "summary": "Process up to 100 contacts in a single batch for data hygiene, validating email addresses and phone numbers with optional regional hints.",
  "seo": {
    "title": "Contact Data Hygiene Batch API | x402 Pay-Per-Call",
    "description": "Validate and clean up to 100 contacts in a single batch. Email and phone hygiene with region hints. $0.18 USDC per call on Base."
  },
  "use_cases": [
    "Clean CRM contact lists before email campaigns",
    "Validate lead data quality in sales pipelines",
    "Standardize international phone numbers with region detection"
  ],
  "ideal_buyer": "Sales operations teams, marketing automation agents, and CRM data quality systems processing contact lists at scale.",
  "example_prompt": "Validate this batch of 50 contacts including emails and phone numbers with default region set to US.",
  "example_request_body": {
    "contacts": [
      {
        "email": "user@example.com",
        "phone": "+1-555-123-4567",
        "default_region": "US"
      }
    ]
  },
  "risk_notes": [],
  "pricing_sanity": {
    "flag": "expensive",
    "ratio": 9,
    "median_category_atomic": 20000
  },
  "pricing_review_required": false,
  "pricing_decimal_suspect": false,
  "trust_tier": "indexed_external",
  "accepts": [
    {
      "scheme": "exact",
      "network": "base",
      "pay_to": "0xba120d70ac92d74370a2aeb0b51cb90ec4648a6c",
      "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
      "max_amount_required_atomic": "180000",
      "max_timeout_seconds": 60,
      "description": "Batch hygiene for up to 100 contacts.",
      "verified": false,
      "hints": {
        "input": {
          "type": "http",
          "method": "POST",
          "body_type": "json",
          "body_fields": {
            "type": "object",
            "$defs": {
              "ContactRequest": {
                "type": "object",
                "title": "ContactRequest",
                "properties": {
                  "email": {
                    "anyOf": [
                      {
                        "type": "string"
                      },
                      {
                        "type": "null"
                      }
                    ],
                    "title": "Email",
                    "description": "Email address"
                  },
                  "phone": {
                    "anyOf": [
                      {
                        "type": "string"
                      },
                      {
                        "type": "null"
                      }
                    ],
                    "title": "Phone",
                    "description": "Phone number"
                  },
                  "default_region": {
                    "anyOf": [
                      {
                        "type": "string"
                      },
                      {
                        "type": "null"
                      }
                    ],
                    "title": "Default Region",
                    "description": "ISO country code hint"
                  }
                }
              }
            },
            "title": "ContactBatchRequest",
            "required": [
              "contacts"
            ],
            "properties": {
              "contacts": {
                "type": "array",
                "items": {
                  "$ref": "#/$defs/ContactRequest"
                },
                "title": "Contacts",
                "description": "List of contacts"
              }
            }
          },
          "discoverable": true
        },
        "output": {
          "type": "object",
          "$defs": {
            "EmailResult": {
              "type": "object",
              "title": "EmailResult",
              "required": [
                "normalized",
                "deliverable_domain",
                "flags",
                "risk_score",
                "reasons"
              ],
              "properties": {
                "flags": {
                  "type": "object",
                  "title": "Flags",
                  "additionalProperties": true
                },
                "reasons": {
                  "type": "array",
                  "items": {
                    "type": "string"
                  },
                  "title": "Reasons"
                },
                "normalized": {
                  "anyOf": [
                    {
                      "type": "string"
                    },
                    {
                      "type": "null"
                    }
                  ],
                  "title": "Normalized"
                },
                "risk_score": {
                  "type": "integer",
                  "title": "Risk Score"
                },
                "deliverable_domain": {
                  "type": "boolean",
                  "title": "Deliverable Domain"
                }
              }
            },
            "PhoneResult": {
              "type": "object",
              "title": "PhoneResult",
              "required": [
                "e164",
                "region",
                "type",
                "flags",
                "risk_score",
                "reasons"
              ],
              "properties": {
                "e164": {
                  "anyOf": [
                    {
                      "type": "string"
                    },
                    {
                      "type": "null"
                    }
                  ],
                  "title": "E164"
                },
                "type": {
                  "anyOf": [
                    {
                      "type": "string"
                    },
                    {
                      "type": "null"
                    }
                  ],
                  "title": "Type"
                },
                "flags": {
                  "type": "object",
                  "title": "Flags",
                  "additionalProperties": true
                },
                "region": {
                  "anyOf": [
                    {
                      "type": "string"
                    },
                    {
                      "type": "null"
                    }
                  ],
                  "title": "Region"
                },
                "reasons": {
                  "type": "array",
                  "items": {
                    "type": "string"
                  },
                  "title": "Reasons"
                },
                "risk_score": {
                  "type": "integer",
                  "title": "Risk Score"
                }
              }
            },
            "ContactResult": {
              "type": "object",
              "title": "ContactResult",
              "required": [
                "risk_score",
                "reasons"
              ],
              "properties": {
                "email": {
                  "anyOf": [
                    {
                      "$ref": "#/$defs/EmailResult"
                    },
                    {
                      "type": "null"
                    }
                  ]
                },
                "phone": {
                  "anyOf": [
                    {
                      "$ref": "#/$defs/PhoneResult"
                    },
                    {
                      "type": "null"
                    }
                  ]
                },
                "reasons": {
                  "type": "array",
                  "items": {
                    "type": "string"
                  },
                  "title": "Reasons"
                },
                "risk_score": {
                  "type": "integer",
                  "title": "Risk Score"
                }
              }
            }
          },
          "title": "ContactBatchResult",
          "required": [
            "results",
            "count"
          ],
          "properties": {
            "count": {
              "type": "integer",
              "title": "Count"
            },
            "results": {
              "type": "array",
              "items": {
                "$ref": "#/$defs/ContactResult"
              },
              "title": "Results"
            }
          }
        }
      }
    }
  ],
  "duplicate_cluster_id": "data-cl-132bb1063e20",
  "origin": {
    "slug": "api-tanantor-com",
    "host": "api.tanantor.com",
    "title": "Tanantor API",
    "description": "API origin at api.tanantor.com. Currently returning a 503 error indicating the service is temporarily unavailable.",
    "url": "https://api.tanantor.com"
  },
  "json_ld": {
    "@id": "https://x402all.com/resource/api-tanantor-com-v1-x402-contact-hygiene-batch100",
    "url": "https://x402all.com/resource/api-tanantor-com-v1-x402-contact-hygiene-batch100",
    "name": "Tanantor \u00b7 Batch Contact Hygiene (100)",
    "@type": "WebAPI",
    "offers": {
      "url": "https://x402all.com/resource/api-tanantor-com-v1-x402-contact-hygiene-batch100",
      "@type": "Offer",
      "price": "0.18",
      "availability": "https://schema.org/InStock",
      "priceCurrency": "USDC",
      "priceSpecification": {
        "@type": "UnitPriceSpecification",
        "price": "0.180000",
        "unitText": "call",
        "priceCurrency": "USDC"
      },
      "eligibleCustomerType": "Agent",
      "additionalProperty": [
        {
          "@type": "PropertyValue",
          "name": "paymentNetwork",
          "value": "base"
        },
        {
          "@type": "PropertyValue",
          "name": "paymentAsset",
          "value": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"
        }
      ]
    },
    "sameAs": "https://api.tanantor.com/v1/x402/contact.hygiene.batch100",
    "@context": "https://schema.org",
    "provider": {
      "@id": "https://x402all.com/server/api-tanantor-com",
      "url": "https://api.tanantor.com",
      "name": "Tanantor API",
      "@type": "Organization"
    },
    "identifier": "api-tanantor-com-v1-x402-contact-hygiene-batch100",
    "description": "Validate and clean up to 100 contacts in a single batch. Email and phone hygiene with region hints. $0.18 USDC per call on Base.",
    "potentialAction": {
      "@type": "BuyAction",
      "target": "https://axon402.com/test-buy?resource=api-tanantor-com-v1-x402-contact-hygiene-batch100",
      "description": "Test-buy this endpoint on AXON"
    },
    "applicationCategory": "tools"
  },
  "axon_deep_link": "https://axon402.com/test-buy?resource=api-tanantor-com-v1-x402-contact-hygiene-batch100"
}
