Comprehensive Email Verification and Deliverability API

API ID 13005

Ensure your emails reach inboxes with our comprehensive verification and deliverability solutions.

Documentación de la API

Endpoints

Solicitud

Runs the full validation pipeline on a single email address. It checks syntax, MX records, disposable status, role-based addresses, free providers, domain typos, and email type, then returns a weighted risk score and a deliverability verdict.

Endpoint ID: 26035
GET https://docs.zylalabs.com/api/13005/comprehensive+email+verification+and+deliverability+api/26035/validate+email
PARÁMETROS DE ENTRADA

Pruebas gratuitas restantes: 3 de 3.

RESPUESTA DE EJEMPLO DE LA API
JSON
{"success":true,"data":{"email":"[email protected]","valid":true,"syntax":true,"mx":true,"disposable":false,"role":false,"free_provider":true,"typo_suggestion":null,"email_type":"free","deliverability":"high","risk_score":5},"meta":{"disclaimer":"Validation results are indicative only. Deliverability cannot be fully guaranteed without live SMTP verification.","cached":false}}
Validate Email — CÓDIGOS DE EJEMPLO

curl --location --request GET 'https://zylalabs.com/api/13005/comprehensive+email+verification+and+deliverability+api/26035/validate+email&email=Required' --header 'Authorization: Bearer YOUR_API_KEY' 


    
Solicitud

Validates up to 50 email addresses supplied in a JSON body with an emails array. Returns a results array where each item has email, valid, syntax, mx, disposable, role, free_provider, typo_suggestion, email_type, deliverability, and risk_score, plus a summary with total, valid_count, invalid_count, high_risk_count, disposable_count, role_count, and free_provider_count.

Endpoint ID: 26036
POST https://docs.zylalabs.com/api/13005/comprehensive+email+verification+and+deliverability+api/26036/validate+emails+batch
PARÁMETROS DE ENTRADA

Validate Emails Batch — Características del Endpoint

Objeto Descripción
Cuerpo de la Solicitud Requerido Json

Pruebas gratuitas restantes: 3 de 3.


PARÁMETROS DE ENTRADA

RESPUESTA DE EJEMPLO DE LA API
JSON
{"success":true,"data":{"results":[{"email":"[email protected]","valid":true,"syntax":true,"mx":true,"disposable":false,"role":false,"free_provider":true,"typo_suggestion":null,"email_type":"free","deliverability":"high","risk_score":5},{"email":"[email protected]","valid":true,"syntax":true,"mx":true,"disposable":true,"role":false,"free_provider":false,"typo_suggestion":null,"email_type":"disposable","deliverability":"low","risk_score":75},{"email":"[email protected]","valid":true,"syntax":true,"mx":true,"disposable":false,"role":false,"free_provider":false,"typo_suggestion":null,"email_type":"business","deliverability":"high","risk_score":0}],"summary":{"total":3,"valid_count":3,"invalid_count":0,"high_risk_count":1,"disposable_count":1,"role_count":0,"free_provider_count":1}},"meta":{"disclaimer":"Validation results are indicative only. Deliverability cannot be fully guaranteed without live SMTP verification.","cached":false}}
Validate Emails Batch — CÓDIGOS DE EJEMPLO

curl --location --request POST 'https://zylalabs.com/api/13005/comprehensive+email+verification+and+deliverability+api/26036/validate+emails+batch' --header 'Authorization: Bearer YOUR_API_KEY' 

--data-raw '{"emails": ["[email protected]", "[email protected]", "[email protected]"]}'

    
Solicitud

Checks the email given in the required email query parameter against RFC 5322 syntax rules only, with no DNS lookup. Returns email, a valid boolean, and a reason string that names the specific failure when invalid or null when valid.

Endpoint ID: 26037
GET https://docs.zylalabs.com/api/13005/comprehensive+email+verification+and+deliverability+api/26037/check+syntax
PARÁMETROS DE ENTRADA

Pruebas gratuitas restantes: 3 de 3.

RESPUESTA DE EJEMPLO DE LA API
JSON
{"success":true,"data":{"email":"[email protected]","valid":true,"reason":null},"meta":{"disclaimer":"Validation results are indicative only. Deliverability cannot be fully guaranteed without live SMTP verification.","cached":false}}
Check Syntax — CÓDIGOS DE EJEMPLO

curl --location --request GET 'https://zylalabs.com/api/13005/comprehensive+email+verification+and+deliverability+api/26037/check+syntax&email=Required' --header 'Authorization: Bearer YOUR_API_KEY' 


    
Solicitud

Scores the email given in the required email query parameter. Returns email, a risk_score from 0 to 100, a deliverability verdict, and a breakdown object with syntax_failed, no_mx, mx_timeout, disposable, role_based, free_provider, and typo_present booleans.

Endpoint ID: 26038
GET https://docs.zylalabs.com/api/13005/comprehensive+email+verification+and+deliverability+api/26038/get+risk+score
PARÁMETROS DE ENTRADA

Pruebas gratuitas restantes: 3 de 3.

RESPUESTA DE EJEMPLO DE LA API
JSON
{"success":true,"data":{"email":"[email protected]","risk_score":5,"deliverability":"high","breakdown":{"syntax_failed":false,"no_mx":false,"mx_timeout":false,"disposable":false,"role_based":false,"free_provider":true,"typo_present":false}},"meta":{"disclaimer":"Validation results are indicative only. Deliverability cannot be fully guaranteed without live SMTP verification.","cached":false}}
Get Risk Score — CÓDIGOS DE EJEMPLO

curl --location --request GET 'https://zylalabs.com/api/13005/comprehensive+email+verification+and+deliverability+api/26038/get+risk+score&email=Required' --header 'Authorization: Bearer YOUR_API_KEY' 


    
Solicitud

Analyses a single domain given in the required domain query parameter, with no at symbol. Returns domain, mx boolean, mx_records array of exchange and priority, disposable boolean, free_provider boolean, provider_name string or null, and typo_of string or null naming the domain it is a misspelling of.

Endpoint ID: 26039
GET https://docs.zylalabs.com/api/13005/comprehensive+email+verification+and+deliverability+api/26039/get+domain+intelligence
PARÁMETROS DE ENTRADA

Pruebas gratuitas restantes: 3 de 3.

RESPUESTA DE EJEMPLO DE LA API
JSON
{"success":true,"data":{"domain":"gmial.com","mx":false,"mx_records":[],"disposable":false,"free_provider":false,"provider_name":null,"typo_of":"gmail.com"},"meta":{"disclaimer":"Validation results are indicative only. Deliverability cannot be fully guaranteed without live SMTP verification.","cached":false}}
Get Domain Intelligence — CÓDIGOS DE EJEMPLO

curl --location --request GET 'https://zylalabs.com/api/13005/comprehensive+email+verification+and+deliverability+api/26039/get+domain+intelligence&domain=Required' --header 'Authorization: Bearer YOUR_API_KEY' 


    
Solicitud

Analiza hasta 100 dominios suministrados en un cuerpo JSON con un arreglo de dominios. Devuelve un arreglo de resultados donde cada elemento tiene dominio, mx, registros_mx, desechable, proveedor_gratuito, nombre_del_proveedor y tipo_de_error, además de un resumen con total, conteo_mx_válido, conteo_desechable, conteo_proveedor_gratuito y conteo_de_errores.

Endpoint ID: 26040
POST https://docs.zylalabs.com/api/13005/comprehensive+email+verification+and+deliverability+api/26040/get+domain+intelligence+batch
PARÁMETROS DE ENTRADA

Obtener inteligencia de dominio por lotes — Características del Endpoint

Objeto Descripción
Cuerpo de la Solicitud Requerido Json

Pruebas gratuitas restantes: 3 de 3.


PARÁMETROS DE ENTRADA

RESPUESTA DE EJEMPLO DE LA API
JSON
{"success":true,"data":{"results":[{"domain":"gmail.com","mx":true,"mx_records":[{"exchange":"gmail-smtp-in.l.google.com","priority":5},{"exchange":"alt1.gmail-smtp-in.l.google.com","priority":10},{"exchange":"alt2.gmail-smtp-in.l.google.com","priority":20},{"exchange":"alt3.gmail-smtp-in.l.google.com","priority":30},{"exchange":"alt4.gmail-smtp-in.l.google.com","priority":40}],"disposable":false,"free_provider":true,"provider_name":"Gmail","typo_of":null},{"domain":"mailinator.com","mx":true,"mx_records":[{"exchange":"mail.mailinator.com","priority":1},{"exchange":"mail2.mailinator.com","priority":1}],"disposable":true,"free_provider":false,"provider_name":null,"typo_of":null},{"domain":"acmewidgets.com","mx":true,"mx_records":[{"exchange":"spamtitan.isomedia.com","priority":5}],"disposable":false,"free_provider":false,"provider_name":null,"typo_of":null}],"summary":{"total":3,"mx_valid_count":3,"disposable_count":1,"free_provider_count":1,"typo_count":0}},"meta":{"disclaimer":"Validation results are indicative only. Deliverability cannot be fully guaranteed without live SMTP verification.","cached":false}}
Obtener inteligencia de dominio por lotes — CÓDIGOS DE EJEMPLO

curl --location --request POST 'https://zylalabs.com/api/13005/comprehensive+email+verification+and+deliverability+api/26040/get+domain+intelligence+batch' --header 'Authorization: Bearer YOUR_API_KEY' 

--data-raw '{"domains": ["gmail.com", "mailinator.com", "acmewidgets.com"]}'

    
Solicitud

Mira los registros MX para el dominio dado en el parámetro de consulta de dominio requerido, sin símbolo de arroba, a través de DNS en vivo con un tiempo de espera rápido. Devuelve dominio, booleano mx, un array de registros de intercambio y prioridad ordenados por prioridad, lookup_time_ms y un booleano de tiempo de espera

Endpoint ID: 26041
GET https://docs.zylalabs.com/api/13005/comprehensive+email+verification+and+deliverability+api/26041/check+mx+records
PARÁMETROS DE ENTRADA

Pruebas gratuitas restantes: 3 de 3.

RESPUESTA DE EJEMPLO DE LA API
JSON
{"success":true,"data":{"domain":"gmail.com","mx":true,"records":[{"exchange":"gmail-smtp-in.l.google.com","priority":5},{"exchange":"alt1.gmail-smtp-in.l.google.com","priority":10},{"exchange":"alt2.gmail-smtp-in.l.google.com","priority":20},{"exchange":"alt3.gmail-smtp-in.l.google.com","priority":30},{"exchange":"alt4.gmail-smtp-in.l.google.com","priority":40}],"lookup_time_ms":2.442,"timeout":false},"meta":{"disclaimer":"Validation results are indicative only. Deliverability cannot be fully guaranteed without live SMTP verification.","cached":false}}
Verifica los registros MX — CÓDIGOS DE EJEMPLO

curl --location --request GET 'https://zylalabs.com/api/13005/comprehensive+email+verification+and+deliverability+api/26041/check+mx+records&domain=Required' --header 'Authorization: Bearer YOUR_API_KEY' 


    
Solicitud

Verifica el dominio dado en el parámetro de consulta de dominio requerido, sin símbolo de arroba, contra la lista acumulada de más de 121000 proveedores desechables y temporales conocidos. Devuelve el dominio, un booleano de desechable y domain_count que indica el número total de dominios desechables cargados

Endpoint ID: 26042
GET https://docs.zylalabs.com/api/13005/comprehensive+email+verification+and+deliverability+api/26042/check+disposable+domain
PARÁMETROS DE ENTRADA

Pruebas gratuitas restantes: 3 de 3.

RESPUESTA DE EJEMPLO DE LA API
JSON
{"success":true,"data":{"domain":"mailinator.com","disposable":true,"domain_count":121570},"meta":{"disclaimer":"Validation results are indicative only. Deliverability cannot be fully guaranteed without live SMTP verification.","cached":false}}
Verificar dominio desechable — CÓDIGOS DE EJEMPLO

curl --location --request GET 'https://zylalabs.com/api/13005/comprehensive+email+verification+and+deliverability+api/26042/check+disposable+domain&domain=Required' --header 'Authorization: Bearer YOUR_API_KEY' 


    
Solicitud

Returns a paginated export of the full disposable domain list. Accepts an optional page parameter starting at 1 and defaulting to 1, and an optional limit parameter up to 1000 and defaulting to 100. Returns a domains array of strings, plus page, limit, total, and total_pages.

Endpoint ID: 26043
GET https://docs.zylalabs.com/api/13005/comprehensive+email+verification+and+deliverability+api/26043/list+disposable+domains
PARÁMETROS DE ENTRADA

List Disposable Domains — Características del Endpoint

Objeto Descripción
page Requerido The page number to return, starting at a minimum of 1 and defaulting to 1 when omitted. A page beyond the end of the list returns an empty array rather than an error.
limit Requerido The number of disposable domains to return per page, up to a maximum of 1000 and defaulting to 100 when omitted.

Pruebas gratuitas restantes: 3 de 3.


PARÁMETROS DE ENTRADA

page
limit
RESPUESTA DE EJEMPLO DE LA API
JSON
{"success":true,"data":{"domains":["0-180.com","0-30-24.com","0-420.com"],"page":1,"limit":3,"total":121570,"total_pages":40524},"meta":{"disclaimer":"Validation results are indicative only. Deliverability cannot be fully guaranteed without live SMTP verification.","cached":false}}
List Disposable Domains — CÓDIGOS DE EJEMPLO

curl --location --request GET 'https://zylalabs.com/api/13005/comprehensive+email+verification+and+deliverability+api/26043/list+disposable+domains?page=1&limit=3' --header 'Authorization: Bearer YOUR_API_KEY' 


    
Solicitud

Checks whether the local part of the email given in the required email query parameter is a recognised role based prefix such as info or support. Returns email, a role boolean, the matched prefix string or null, and a category which is one of support, admin, marketing, finance, technical, or generic.

Endpoint ID: 26044
GET https://docs.zylalabs.com/api/13005/comprehensive+email+verification+and+deliverability+api/26044/check+role+address
PARÁMETROS DE ENTRADA

Pruebas gratuitas restantes: 3 de 3.

RESPUESTA DE EJEMPLO DE LA API
JSON
{"success":true,"data":{"email":"[email protected]","role":true,"prefix":"support","category":"support"},"meta":{"disclaimer":"Validation results are indicative only. Deliverability cannot be fully guaranteed without live SMTP verification.","cached":false}}
Check Role Address — CÓDIGOS DE EJEMPLO

curl --location --request GET 'https://zylalabs.com/api/13005/comprehensive+email+verification+and+deliverability+api/26044/check+role+address&email=Required' --header 'Authorization: Bearer YOUR_API_KEY' 


    
Solicitud

Suggests a correction for a misspelled domain in the email given in the required email query parameter, using an exact typo map then an edit distance fallback. Returns original, suggestion string or null, corrected_email string or null, and confidence which is high, medium, or null.

Endpoint ID: 26045
GET https://docs.zylalabs.com/api/13005/comprehensive+email+verification+and+deliverability+api/26045/suggest+typo+correction
PARÁMETROS DE ENTRADA

Pruebas gratuitas restantes: 3 de 3.

RESPUESTA DE EJEMPLO DE LA API
JSON
{"success":true,"data":{"original":"[email protected]","suggestion":"gmail.com","corrected_email":"[email protected]","confidence":"high"},"meta":{"disclaimer":"Validation results are indicative only. Deliverability cannot be fully guaranteed without live SMTP verification.","cached":false}}
Suggest Typo Correction — CÓDIGOS DE EJEMPLO

curl --location --request GET 'https://zylalabs.com/api/13005/comprehensive+email+verification+and+deliverability+api/26045/suggest+typo+correction&email=Required' --header 'Authorization: Bearer YOUR_API_KEY' 


    
Solicitud

Checks whether the domain given in the required domain query parameter, with no at symbol, is a known free email provider or ISP bundled mailbox. Returns domain, a free_provider boolean, and provider_name string or null giving the provider name when matched.

Endpoint ID: 26046
GET https://docs.zylalabs.com/api/13005/comprehensive+email+verification+and+deliverability+api/26046/check+free+provider
PARÁMETROS DE ENTRADA

Pruebas gratuitas restantes: 3 de 3.

RESPUESTA DE EJEMPLO DE LA API
JSON
{"success":true,"data":{"domain":"gmail.com","free_provider":true,"provider_name":"Gmail"},"meta":{"disclaimer":"Validation results are indicative only. Deliverability cannot be fully guaranteed without live SMTP verification.","cached":false}}
Check Free Provider — CÓDIGOS DE EJEMPLO

curl --location --request GET 'https://zylalabs.com/api/13005/comprehensive+email+verification+and+deliverability+api/26046/check+free+provider&domain=Required' --header 'Authorization: Bearer YOUR_API_KEY' 


    
Solicitud

Returns the full list of known free email providers and ISP bundled mailboxes. Returns a providers array where each item has domain, name, and type which is either free or isp, plus a total count. Takes no parameters.

Endpoint ID: 26047
GET https://docs.zylalabs.com/api/13005/comprehensive+email+verification+and+deliverability+api/26047/list+free+providers
PARÁMETROS DE ENTRADA

Pruebas gratuitas restantes: 3 de 3.

Este endpoint no requiere parámetros de entrada.

RESPUESTA DE EJEMPLO DE LA API
JSON
{"Example Response":"No response example available for now."}
List Free Providers — CÓDIGOS DE EJEMPLO

curl --location --request GET 'https://zylalabs.com/api/13005/comprehensive+email+verification+and+deliverability+api/26047/list+free+providers' --header 'Authorization: Bearer YOUR_API_KEY' 


    
Solicitud

Canonicalises the email given in the required email query parameter by lowercasing it, stripping plus tags, and removing Gmail dots. A literal plus sign in the value must be percent encoded as %2B. Returns original, normalized, a changed boolean, and a rules_applied array naming each transform that fired.

Endpoint ID: 26048
GET https://docs.zylalabs.com/api/13005/comprehensive+email+verification+and+deliverability+api/26048/normalize+email
PARÁMETROS DE ENTRADA

Pruebas gratuitas restantes: 3 de 3.

RESPUESTA DE EJEMPLO DE LA API
JSON
{"success":true,"data":{"original":"[email protected]","normalized":"[email protected]","changed":true,"rules_applied":["lowercased","stripped_plus_tag","stripped_dots"]},"meta":{"disclaimer":"Validation results are indicative only. Deliverability cannot be fully guaranteed without live SMTP verification.","cached":false}}
Normalize Email — CÓDIGOS DE EJEMPLO

curl --location --request GET 'https://zylalabs.com/api/13005/comprehensive+email+verification+and+deliverability+api/26048/normalize+email&email=Required' --header 'Authorization: Bearer YOUR_API_KEY' 


    
Solicitud

Classifies the domain of the email given in the required email query parameter. Returns email, domain, email_type which is one of free, business, disposable, educational, government, or isp, and an is_business boolean that is true only when the type is business.

Endpoint ID: 26049
GET https://docs.zylalabs.com/api/13005/comprehensive+email+verification+and+deliverability+api/26049/classify+email+type
PARÁMETROS DE ENTRADA

Pruebas gratuitas restantes: 3 de 3.

RESPUESTA DE EJEMPLO DE LA API
JSON
{"success":true,"data":{"email":"[email protected]","domain":"acmewidgets.com","email_type":"business","is_business":true},"meta":{"disclaimer":"Validation results are indicative only. Deliverability cannot be fully guaranteed without live SMTP verification.","cached":false}}
Classify Email Type — CÓDIGOS DE EJEMPLO

curl --location --request GET 'https://zylalabs.com/api/13005/comprehensive+email+verification+and+deliverability+api/26049/classify+email+type&email=Required' --header 'Authorization: Bearer YOUR_API_KEY' 


    
Solicitud

Returns API status and live dataset counts. Returns uptime_seconds, version, node_version, disposable_domain_count, free_provider_count, isp_count, role_prefix_count, typo_map_size, endpoints, and an smtp_enabled boolean. Takes no parameters.

Endpoint ID: 26050
GET https://docs.zylalabs.com/api/13005/comprehensive+email+verification+and+deliverability+api/26050/health+check
PARÁMETROS DE ENTRADA

Pruebas gratuitas restantes: 3 de 3.

Este endpoint no requiere parámetros de entrada.

RESPUESTA DE EJEMPLO DE LA API
JSON
{"success":true,"data":{"uptime_seconds":624071,"version":"1.0.0","node_version":"v18.20.5","disposable_domain_count":121570,"free_provider_count":172,"isp_count":43,"role_prefix_count":78,"typo_map_size":208,"endpoints":19,"smtp_enabled":false},"meta":{"disclaimer":"Validation results are indicative only. Deliverability cannot be fully guaranteed without live SMTP verification.","cached":false}}
Health Check — CÓDIGOS DE EJEMPLO

curl --location --request GET 'https://zylalabs.com/api/13005/comprehensive+email+verification+and+deliverability+api/26050/health+check' --header 'Authorization: Bearer YOUR_API_KEY' 


    

Clave de Acceso a la API y Autenticación

Después de registrarte, a cada desarrollador se le asigna una clave de acceso a la API personal, una combinación única de letras y dígitos proporcionada para acceder a nuestro endpoint de la API. Para autenticarte con el Comprehensive Email Verification and Deliverability API simplemente incluye tu token de portador en el encabezado de Autorización.

Encabezados
Encabezado Descripción
Autorización Requerido Debería ser Bearer access_key. Consulta "Tu Clave de Acceso a la API" arriba cuando estés suscrito.

Sin compromiso a largo plazo. Mejora, reduce o cancela en cualquier momento. La Prueba Gratuita incluye hasta 50 solicitudes.

(Ahorra 2 meses pagando anualmente 🎉)

🚀 PLAN CORPORATIVO A MEDIDA

Comienza en
$ 10.000/Año


  • Volumen Personalizado
  • Límite de solicitudes personalizado
  • Soporte al Cliente Especializado
  • Monitoreo de API en Tiempo Real

Resumen

Validates email addresses against RFC 5322 syntax, checks MX records via live DNS, detects disposable domains from a list of over 121,000 known providers, flags role-based addresses, suggests corrections for common domain typos, classifies the domain type, and normalizes addresses for de-duplication. Each request returns a weighted risk score and a deliverability verdict. The API is stateless and stores no submitted data.

Authentication is handled by the marketplace gateway, so no key management is required in your own code.

Risk scores are computed from weighted flags: invalid syntax scores 100 and short-circuits all other checks, no MX record adds 55, an MX timeout adds 30, a disposable domain adds 75, a role-based address adds 20, a typo adds 10, and a free provider adds 5. The total is capped at 100. The deliverability verdict is derived from the score: high for 0 to 20, medium for 21 to 49, low for 50 to 79, and undeliverable for 80 to 100.

Domain type is classified in precedence order: disposable, then free, educational, government, ISP, and finally business. When passing an email address that contains a plus sign in a query string, the plus must be percent-encoded as %2B, since an unencoded plus is interpreted as a space and will fail syntax validation.

Comprehensive Email Verification and Deliverability API FAQs

No. It validates syntax, confirms the domain can receive mail through a live MX record lookup, and scores reputation signals such as disposable domains, role-based addresses, and typos. It does not perform live SMTP mailbox verification, so it cannot confirm that a specific mailbox exists. The deliverability verdict and risk score are strong indicative signals, not a delivery guarantee

Each detected flag adds weighted points. No MX record adds 55, an MX timeout adds 30, a disposable domain adds 75, a role-based address adds 20, a typo adds 10, and a free provider adds 5. Invalid syntax scores 100 and skips all other checks. The total is capped at 100, and the deliverability verdict is derived from it. High is 0 to 20, medium is 21 to 49, low is 50 to 79, and undeliverable is 80 to 100.

Disposable or throwaway domains are temporary email services such as Mailinator and ten-minute-mail providers, commonly used to bypass signup gates. The API checks against a list of over 121000 known disposable domains. You can check a single domain with the disposable endpoint or export the full list with the disposable list endpoint.

It runs in two stages. First it checks an exact map of common misspellings of the top providers, which returns high confidence. If there is no exact match, it compares the domain against the known provider list by edit distance, and a single-character difference returns the closest match at medium confidence. If neither stage matches, no suggestion is returned.

A free provider is an independent webmail service such as Gmail, Yahoo, or Outlook. An ISP type is a mailbox bundled with an internet or telecom subscription such as Comcast, BT Internet, or Orange. Both are non-business addresses, and the distinction is useful for analytics and for filtering business signups.

Yes. The batch validation endpoint accepts up to 50 email addresses in a single request and returns a result for each one plus a summary of counts across the batch. There is also a batch domain endpoint that accepts up to 100 domains.

No. The API is stateless and uses no database. Email addresses and domains you submit are processed in memory to produce the response and are not retained. The only data loaded is the static list of disposable domains, providers, and typo mappings.

In a URL query string an unencoded plus sign is read as a space before the API receives it, and a space is not valid in an email address, so the request fails validation. Encode the plus sign as %2B and it will be received correctly.

Cada punto final devuelve datos JSON estructurados. Por ejemplo, el punto final de Validar Correo Electrónico proporciona campos como correo electrónico, válido, sintaxis, mx, desechable, rol, proveedor gratuito, sugerencia de error tipográfico, tipo de correo electrónico, capacidad de entrega y puntaje de riesgo. Los puntos finales por lotes devuelven campos similares para múltiples correos electrónicos o dominios, junto con estadísticas resumidas

Los campos clave incluyen "email" para la dirección revisada "valid" que indica si es válida "risk_score" que refleja el riesgo de entregabilidad y "deliverability" que categoriza la probabilidad de que el correo electrónico llegue a las bandejas de entrada Campos adicionales brindan información sobre la sintaxis los registros MX y el tipo de dominio

Parameters vary by endpoint. For instance, the Validate Emails Batch endpoint accepts a JSON body with an "emails" array, while the Check Syntax endpoint requires an "email" query parameter. Users can customize requests by providing specific email addresses or domains as needed.

Response data is organized in a JSON format with a "success" boolean, a "data" object containing the results, and a "meta" object with disclaimers. Each result includes relevant fields like email validity and risk assessment, making it easy to parse and utilize.

The API uses a combination of live DNS lookups for MX records, a static list of over 121,000 disposable domains, and a typo map for common misspellings. This multi-source approach enhances data accuracy and reliability for email validation.

Typical use cases include validating email addresses during user sign-ups, cleaning email lists for marketing campaigns, and assessing the quality of leads. Businesses can use the risk score and deliverability verdict to prioritize outreach efforts.

Users can leverage the risk score and deliverability verdict to filter out high-risk emails before sending campaigns. The typo suggestions can help correct common mistakes, while the classification of email types aids in segmenting audiences for targeted marketing.

Data accuracy is maintained through regular updates to the disposable domain list and typo mappings, along with real-time DNS checks for MX records. This ensures that the API provides current and reliable information for email validation tasks.

General FAQs

Zyla API Hub es como una gran tienda de APIs, donde puedes encontrar miles de ellas en un solo lugar. También ofrecemos soporte dedicado y monitoreo en tiempo real de todas las APIs. Una vez que te registres, puedes elegir qué APIs quieres usar. Solo recuerda que cada API necesita su propia suscripción. Pero si te suscribes a varias, usarás la misma clave para todas, lo que hace todo más fácil para ti.
Los precios se muestran en USD (dólar estadounidense), EUR (euro), CAD (dólar canadiense), AUD (dólar australiano) y GBP (libra esterlina). Aceptamos todas las principales tarjetas de débito y crédito. Nuestro sistema de pago utiliza la última tecnología de seguridad y está respaldado por Stripe, una de las compañías de pago más confiables del mundo. Si tienes algún problema para pagar con tarjeta, contáctanos en [email protected]

Además, si ya tienes una suscripción activa en cualquiera de estas monedas (USD, EUR, CAD, AUD, GBP), esa moneda se mantendrá para suscripciones posteriores. Puedes cambiar la moneda en cualquier momento siempre que no tengas suscripciones activas.
La moneda local que aparece en la página de precios se basa en el país de tu dirección IP y se proporciona solo como referencia. Los precios reales están en USD (dólar estadounidense). Cuando realices un pago, el cargo aparecerá en tu estado de cuenta en USD, incluso si ves el monto equivalente en tu moneda local en nuestro sitio web. Esto significa que no puedes pagar directamente en tu moneda local.
Ocasionalmente, un banco puede rechazar el cargo debido a sus configuraciones de protección contra fraude. Te sugerimos comunicarte con tu banco primero para verificar si están bloqueando nuestros cargos. También puedes acceder al Portal de Facturación y cambiar la tarjeta asociada para realizar el pago. Si esto no funciona y necesitas más ayuda, por favor contacta a nuestro equipo en [email protected]
Los precios se determinan mediante una suscripción recurrente mensual o anual, dependiendo del plan elegido.
Las llamadas a la API se descuentan de tu plan en base a solicitudes exitosas. Cada plan incluye una cantidad específica de llamadas que puedes realizar por mes. Solo las llamadas exitosas, indicadas por una respuesta con estado 200, se contarán en tu total. Esto asegura que las solicitudes fallidas o incompletas no afecten tu cuota mensual.
Zyla API Hub funciona con un sistema de suscripción mensual recurrente. Tu ciclo de facturación comenzará el día en que compres uno de los planes de pago, y se renovará el mismo día del mes siguiente. Así que recuerda cancelar tu suscripción antes si quieres evitar futuros cargos.
Para actualizar tu plan de suscripción actual, simplemente ve a la página de precios de la API y selecciona el plan al que deseas actualizarte. La actualización será instantánea, permitiéndote disfrutar inmediatamente de las funciones del nuevo plan. Ten en cuenta que las llamadas restantes de tu plan anterior no se transferirán al nuevo plan, por lo que debes considerar esto al actualizar. Se te cobrará el monto total del nuevo plan.
Para verificar cuántas llamadas a la API te quedan en el mes actual, revisa el campo 'X-Zyla-API-Calls-Monthly-Remaining' en el encabezado de la respuesta. Por ejemplo, si tu plan permite 1,000 solicitudes por mes y has usado 100, este campo mostrará 900 llamadas restantes.
Para ver el número máximo de solicitudes a la API que permite tu plan, revisa el encabezado de la respuesta 'X-Zyla-RateLimit-Limit'. Por ejemplo, si tu plan incluye 1,000 solicitudes por mes, este encabezado mostrará 1,000.
El encabezado 'X-Zyla-RateLimit-Reset' muestra el número de segundos hasta que tu límite se restablezca. Esto te indica cuándo tu conteo de solicitudes se reiniciará. Por ejemplo, si muestra 3,600, significa que faltan 3,600 segundos para que el límite se restablezca.
Sí, puedes cancelar tu plan en cualquier momento desde tu cuenta, seleccionando la opción de cancelación en la página de Facturación. Ten en cuenta que las actualizaciones, degradaciones y cancelaciones tienen efecto inmediato. Además, al cancelar ya no tendrás acceso al servicio, incluso si te quedaban llamadas en tu cuota.
Para darte la oportunidad de probar nuestras APIs sin compromiso, ofrecemos una prueba gratuita de 7 días que te permite realizar hasta 50 llamadas a la API sin costo. Esta prueba solo se puede usar una vez, por lo que recomendamos aplicarla a la API que más te interese. Aunque la mayoría de nuestras APIs ofrecen prueba gratuita, algunas pueden no hacerlo. La prueba finaliza después de 7 días o cuando realices 50 solicitudes, lo que ocurra primero. Si alcanzas el límite de 50 solicitudes durante la prueba, deberás "Iniciar tu Plan de Pago" para continuar haciendo solicitudes. Puedes encontrar el botón "Iniciar tu Plan de Pago" en tu perfil bajo Suscripción -> Elige la API a la que estás suscrito -> Pestaña de Precios. Alternativamente, si no cancelas tu suscripción antes del día 7, tu prueba gratuita finalizará y tu plan se cobrará automáticamente, otorgándote acceso a todas las llamadas a la API especificadas en tu plan. Ten esto en cuenta para evitar cargos no deseados.
Después de 7 días, se te cobrará el monto total del plan al que estabas suscrito durante la prueba. Por lo tanto, es importante cancelar antes de que finalice el periodo de prueba. No se aceptan solicitudes de reembolso por olvidar cancelar a tiempo.
Cuando te suscribes a una prueba gratuita de una API, puedes realizar hasta 50 llamadas. Si deseas realizar más llamadas después de este límite, la API te pedirá que "Inicies tu Plan de Pago". Puedes encontrar el botón "Iniciar tu Plan de Pago" en tu perfil bajo Suscripción -> Elige la API a la que estás suscrito -> Pestaña de Precios.
Las Órdenes de Pago se procesan entre el día 20 y el 30 de cada mes. Si envías tu solicitud antes del día 20, tu pago será procesado dentro de ese período.
Puedes contactarnos a través de nuestro canal de chat para recibir asistencia inmediata. Siempre estamos en línea de 8 a. m. a 5 p. m. (EST). Si nos contactas fuera de ese horario, te responderemos lo antes posible. Además, puedes escribirnos por correo electrónico a [email protected]

APIs Relacionadas


También te puede interesar