Go to Dymo
Dymo | Private API

Private API

🔒 Secure

With this functionality you can check whether the data entered is disposable, insecure, behavioral and many other things.

🎯 Parameters



data: {
    email: {
        description: "Email address to be inspected.",
        type: String,
        default: undefined,
        methods: [ Params ],
        nested: [ Authorization ]
    },
    tel: {
        description: "Telephone number (including prefix) to be inspected.",
        type: String,
        default: undefined,
        methods: [ Params ],
        nested: [ Authorization ]
    },
    domain: {
        description: "Domain to be inspected.",
        type: String,
        default: undefined,
        methods: [ Params ],
        nested: [ Authorization ]
    },
    creditCard: {
        description: "Credit card number to be inspected.",
        type: String,
        default: undefined,
        methods: [ Params ],
        nested: [ Authorization ]
    },
    ip: {
        description: "IP address to be inspected.",
        type: String,
        default: undefined,
        methods: [ Params ],
        nested: [ Authorization ]
    }
}
                                                

🔥 cURL



curl -X GET \
  'https://api.tpeoficial.com/v1/private/secure/verify?email=test%40test.com&tel=%2B34617509462&domain=test.com&creditCard=5110929780543845&ip=52.94.236.248' \
  -H 'Authorization: Bearer YOUR_PRIVATE_TOKEN_HERE' 
                                                

✅ Response



{
  email: {
    code: "0000", // Refers to the email parameter.
    complexity: "BA51C",
    valid: true,
    disposable: false,
    freeSubdomain: false,
    corporate: true,
    email: "[email protected]",
    user: "test",
    domain: "test.com",
    pwned: "Coming Soon"
  },
  tel: {
    code: "0001", // Refers to the tel parameter.
    complexity: "BA51C",
    valid: true,
    disposable: false,
    tel: "+34617509462",
    prefix: "34",
    number: "617509462",
    country: "Spain",
    countryCode: "ES"
  },
  domain: { 
    code: "0002", // Refers to the domain parameter.
    complexity: "BA51C",
    valid: true,
    malicious: false,
    freeSubdomain: false,
    domain: "test.com"
  },
  creditCard: {
    code: "0003", // Refers to the credit card parameter.
    complexity: "BA51C",
    valid: true,
    test: false,
    type: "Mastercard",
    formatted: "5110929780543845",
    creditCard: "5110929780543845"
  },
  ip: { 
    code: "0004", // Refers to the ip parameter.
    complexity: "BA51C",
    valid: true,
    dangerous: false,
    ip: "52.94.236.248"
    continent: "North America",
    continentCode: "NA",
    country: "United States",
    countryCode: "US",
    region: "VA",
    regionName: "Virginia",
    city: "Ashburn",
    district: "",
    zip: "20149",
    lat: 39.0438,
    lon: -77.4874,
    timezone: "America/New_York",
    offset: -18000,
    currency: "USD",
    isp: "Amazon.com, Inc.",
    org: "Amazon Technologies Inc. (us-east-1)",
    as: "AS16509 Amazon.com, Inc.",
    asname: "AMAZON-02",
    mobile: false,
    proxy: false,
    hosting: true
  }
}
                                                

BASE URL

Private

https://api.tpeoficial.com/v1/private/secure/verify

Language Box

Was this section helpful?