Advanced Email Deliverability and Disposable Domain Detection API

API ID 13006

Detect disposable domains and improve email deliverability with our advanced verification tools.

API 文档

端点

请求

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: 26051
GET https://zylalabs.com/api/13006/advanced+email+deliverability+and+disposable+domain+detection+api/26051/validate+email
输入参数

剩余免费测试请求:3 / 3。

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 — 代码片段

curl --location --request GET 'https://zylalabs.com/api/13006/advanced+email+deliverability+and+disposable+domain+detection+api/26051/validate+email&email=Required' --header 'Authorization: Bearer YOUR_API_KEY' 


    
请求

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: 26052
POST https://zylalabs.com/api/13006/advanced+email+deliverability+and+disposable+domain+detection+api/26052/validate+emails+batch
输入参数

Validate Emails Batch — 端点功能

对象 描述
请求体 必需 Json

剩余免费测试请求:3 / 3。


输入参数

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 — 代码片段

curl --location --request POST 'https://zylalabs.com/api/13006/advanced+email+deliverability+and+disposable+domain+detection+api/26052/validate+emails+batch' --header 'Authorization: Bearer YOUR_API_KEY' 

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

    
请求

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: 26053
GET https://zylalabs.com/api/13006/advanced+email+deliverability+and+disposable+domain+detection+api/26053/check+syntax
输入参数

剩余免费测试请求:3 / 3。

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 — 代码片段

curl --location --request GET 'https://zylalabs.com/api/13006/advanced+email+deliverability+and+disposable+domain+detection+api/26053/check+syntax&email=Required' --header 'Authorization: Bearer YOUR_API_KEY' 


    
请求

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: 26054
GET https://zylalabs.com/api/13006/advanced+email+deliverability+and+disposable+domain+detection+api/26054/get+risk+score
输入参数

剩余免费测试请求:3 / 3。

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 — 代码片段

curl --location --request GET 'https://zylalabs.com/api/13006/advanced+email+deliverability+and+disposable+domain+detection+api/26054/get+risk+score&email=Required' --header 'Authorization: Bearer YOUR_API_KEY' 


    
请求

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: 26055
GET https://zylalabs.com/api/13006/advanced+email+deliverability+and+disposable+domain+detection+api/26055/get+domain+intelligence
输入参数

剩余免费测试请求:3 / 3。

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 — 代码片段

curl --location --request GET 'https://zylalabs.com/api/13006/advanced+email+deliverability+and+disposable+domain+detection+api/26055/get+domain+intelligence&domain=Required' --header 'Authorization: Bearer YOUR_API_KEY' 


    
请求

Analyses up to 100 domains supplied in a JSON body with a domains array. Returns a results array where each item has domain, mx, mx_records, disposable, free_provider, provider_name, and typo_of, plus a summary with total, mx_valid_count, disposable_count, free_provider_count, and typo_count.

Endpoint ID: 26056
POST https://zylalabs.com/api/13006/advanced+email+deliverability+and+disposable+domain+detection+api/26056/get+domain+intelligence+batch
输入参数

Get Domain Intelligence Batch — 端点功能

对象 描述
请求体 必需 Json

剩余免费测试请求:3 / 3。


输入参数

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}}
Get Domain Intelligence Batch — 代码片段

curl --location --request POST 'https://zylalabs.com/api/13006/advanced+email+deliverability+and+disposable+domain+detection+api/26056/get+domain+intelligence+batch' --header 'Authorization: Bearer YOUR_API_KEY' 

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

    
请求

Looks up the MX records for the domain given in the required domain query parameter, with no at symbol, via live DNS with a fast timeout. Returns domain, mx boolean, a records array of exchange and priority sorted by priority, lookup_time_ms, and a timeout boolean.

Endpoint ID: 26057
GET https://zylalabs.com/api/13006/advanced+email+deliverability+and+disposable+domain+detection+api/26057/check+mx+records
输入参数

剩余免费测试请求:3 / 3。

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}}
Check MX Records — 代码片段

curl --location --request GET 'https://zylalabs.com/api/13006/advanced+email+deliverability+and+disposable+domain+detection+api/26057/check+mx+records&domain=Required' --header 'Authorization: Bearer YOUR_API_KEY' 


    
请求

Checks the domain given in the required domain query parameter, with no at symbol, against the bundled list of over 121000 known disposable and throwaway providers. Returns domain, a disposable boolean, and domain_count giving the total number of disposable domains loaded.

Endpoint ID: 26058
GET https://zylalabs.com/api/13006/advanced+email+deliverability+and+disposable+domain+detection+api/26058/check+disposable+domain
输入参数

剩余免费测试请求:3 / 3。

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}}
Check Disposable Domain — 代码片段

curl --location --request GET 'https://zylalabs.com/api/13006/advanced+email+deliverability+and+disposable+domain+detection+api/26058/check+disposable+domain&domain=Required' --header 'Authorization: Bearer YOUR_API_KEY' 


    
请求

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: 26059
GET https://zylalabs.com/api/13006/advanced+email+deliverability+and+disposable+domain+detection+api/26059/list+disposable+domains
输入参数

List Disposable Domains — 端点功能

对象 描述
page 必需 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 必需 The number of disposable domains to return per page, up to a maximum of 1000 and defaulting to 100 when omitted.

剩余免费测试请求:3 / 3。


输入参数

page
limit
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 — 代码片段

curl --location --request GET 'https://zylalabs.com/api/13006/advanced+email+deliverability+and+disposable+domain+detection+api/26059/list+disposable+domains?page=1&limit=3' --header 'Authorization: Bearer YOUR_API_KEY' 


    
请求

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: 26060
GET https://zylalabs.com/api/13006/advanced+email+deliverability+and+disposable+domain+detection+api/26060/check+role+address
输入参数

剩余免费测试请求:3 / 3。

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 — 代码片段

curl --location --request GET 'https://zylalabs.com/api/13006/advanced+email+deliverability+and+disposable+domain+detection+api/26060/check+role+address&email=Required' --header 'Authorization: Bearer YOUR_API_KEY' 


    
请求

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: 26061
GET https://zylalabs.com/api/13006/advanced+email+deliverability+and+disposable+domain+detection+api/26061/suggest+typo+correction
输入参数

剩余免费测试请求:3 / 3。

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 — 代码片段

curl --location --request GET 'https://zylalabs.com/api/13006/advanced+email+deliverability+and+disposable+domain+detection+api/26061/suggest+typo+correction&email=Required' --header 'Authorization: Bearer YOUR_API_KEY' 


    
请求

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: 26062
GET https://zylalabs.com/api/13006/advanced+email+deliverability+and+disposable+domain+detection+api/26062/check+free+provider
输入参数

剩余免费测试请求:3 / 3。

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 — 代码片段

curl --location --request GET 'https://zylalabs.com/api/13006/advanced+email+deliverability+and+disposable+domain+detection+api/26062/check+free+provider&domain=Required' --header 'Authorization: Bearer YOUR_API_KEY' 


    
请求

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: 26063
GET https://zylalabs.com/api/13006/advanced+email+deliverability+and+disposable+domain+detection+api/26063/list+free+providers
输入参数

剩余免费测试请求:3 / 3。

此端点不需要任何输入参数。

API 示例响应
JSON
{"Example Response":"No response example available for now."}
List Free Providers — 代码片段

curl --location --request GET 'https://zylalabs.com/api/13006/advanced+email+deliverability+and+disposable+domain+detection+api/26063/list+free+providers' --header 'Authorization: Bearer YOUR_API_KEY' 


    
请求

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: 26064
GET https://zylalabs.com/api/13006/advanced+email+deliverability+and+disposable+domain+detection+api/26064/normalize+email
输入参数

剩余免费测试请求:3 / 3。

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 — 代码片段

curl --location --request GET 'https://zylalabs.com/api/13006/advanced+email+deliverability+and+disposable+domain+detection+api/26064/normalize+email&email=Required' --header 'Authorization: Bearer YOUR_API_KEY' 


    
请求

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: 26065
GET https://zylalabs.com/api/13006/advanced+email+deliverability+and+disposable+domain+detection+api/26065/classify+email+type
输入参数

剩余免费测试请求:3 / 3。

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 — 代码片段

curl --location --request GET 'https://zylalabs.com/api/13006/advanced+email+deliverability+and+disposable+domain+detection+api/26065/classify+email+type&email=Required' --header 'Authorization: Bearer YOUR_API_KEY' 


    
请求

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: 26066
GET https://zylalabs.com/api/13006/advanced+email+deliverability+and+disposable+domain+detection+api/26066/health+check
输入参数

剩余免费测试请求:3 / 3。

此端点不需要任何输入参数。

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 — 代码片段

curl --location --request GET 'https://zylalabs.com/api/13006/advanced+email+deliverability+and+disposable+domain+detection+api/26066/health+check' --header 'Authorization: Bearer YOUR_API_KEY' 


    

API 访问密钥和身份验证

注册后,每个开发者都会被分配一个个人 API 访问密钥,这是一个唯一的字母和数字组合,用于访问我们的 API 端点。要使用 Advanced Email Deliverability and Disposable Domain Detection API 进行身份验证,只需在 Authorization 标头中包含您的 bearer token。

标头
标头 描述
授权 必需 应为 Bearer access_key. 订阅后,请查看上方的"您的 API 访问密钥"。

无长期承诺。随时升级、降级或取消。 免费试用包括最多 50 个请求。

(年度计费可节省 2 个月 🎉)

🚀 企业版套餐

起价
$ 10,000/年


  • 自定义数量
  • 自定义速率限制
  • 专业客户支持
  • 实时 API 监控

概览

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.

Advanced Email Deliverability and Disposable Domain Detection 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.

每个端点返回结构化的JSON数据。例如,验证电子邮件端点返回字段如电子邮件、有效性、语法、MX、一次性、角色、免费提供者、拼写建议、电子邮件类型、可送达性和风险评分。批量端点提供多个电子邮件或域的类似数据以及汇总统计分析

关键字段包括“电子邮件”(已验证的地址)“有效”(有效性的布尔值)“风险评分”(0-100)“可送达性”(高、中、低、无法送达)和“电子邮件类型”(例如,免费、商业)每个端点都有与其功能相关的特定字段

Parameters vary by endpoint. For example, the Validate Emails Batch endpoint accepts a JSON body with an 'emails' array, while the List Disposable Domains endpoint accepts optional 'page' and 'limit' parameters for pagination. Each endpoint's documentation specifies accepted parameters.

Response data is organized in a JSON format with a 'success' boolean, 'data' object containing the relevant information, and 'meta' for additional context like disclaimers. For batch requests, results are returned in an array with a summary object for overall statistics.

The API uses a static list of over 121,000 known disposable domains, along with live DNS lookups for MX records. Data accuracy is maintained through regular updates to the disposable domain list and by relying on established email validation standards like RFC 5322.

Typical use cases include validating email addresses during user signups, filtering out disposable emails to reduce fraud, and improving email marketing deliverability by identifying role-based or free provider addresses. Businesses can enhance their email lists with accurate data.

Users can analyze the risk score and deliverability verdict to assess email quality. For example, a high risk score indicates potential issues, while a low score suggests a reliable address. Users can also leverage typo suggestions to correct common misspellings before sending communications.

If an endpoint returns partial or empty results, users should check the validity of the input parameters. For batch requests, review the summary statistics to identify how many emails were valid or invalid. Implement error handling to manage cases where no data is returned.

一般常见问题

Zyla API Hub 就像一个大型 API 商店,您可以在一个地方找到数千个 API。我们还为所有 API 提供专门支持和实时监控。注册后,您可以选择要使用的 API。请记住,每个 API 都需要自己的订阅。但如果您订阅多个 API,您将为所有这些 API 使用相同的密钥,使事情变得更简单。
价格以 USD(美元)、EUR(欧元)、CAD(加元)、AUD(澳元)和 GBP(英镑)列出。我们接受所有主要的借记卡和信用卡。我们的支付系统使用最新的安全技术,由 Stripe 提供支持,Stripe 是世界上最可靠的支付公司之一。如果您在使用卡片付款时遇到任何问题,请通过 [email protected]

此外,如果您已经以这些货币中的任何一种(USD、EUR、CAD、AUD、GBP)拥有有效订阅,该货币将保留用于后续订阅。只要您没有任何有效订阅,您可以随时更改货币。
定价页面上显示的本地货币基于您 IP 地址的国家/地区,仅供参考。实际价格以 USD(美元)为单位。当您付款时,即使您在我们的网站上看到以本地货币显示的等值金额,您的卡片对账单上也会以美元显示费用。这意味着您不能直接使用本地货币付款。
有时,银行可能会因其欺诈保护设置而拒绝收费。我们建议您首先联系您的银行,检查他们是否阻止了我们的收费。此外,您可以访问账单门户并更改关联的卡片以进行付款。如果这些方法不起作用并且您需要进一步帮助,请通过 [email protected]
价格由月度或年度订阅决定,具体取决于所选计划。
API 调用根据成功请求从您的计划中扣除。每个计划都包含您每月可以进行的特定数量的调用。只有成功的调用(由状态 200 响应指示)才会计入您的总数。这确保失败或不完整的请求不会影响您的月度配额。
Zyla API Hub 采用月度订阅系统。您的计费周期将从您购买付费计划的那一天开始,并在下个月的同一日期续订。因此,如果您想避免未来的费用,请提前取消订阅。
要升级您当前的订阅计划,只需转到 API 的定价页面并选择您要升级到的计划。升级将立即生效,让您立即享受新计划的功能。请注意,您之前计划中的任何剩余调用都不会转移到新计划,因此在升级时请注意这一点。您将被收取新计划的全部金额。
要检查您本月剩余多少 API 调用,请参考响应标头中的 "X-Zyla-API-Calls-Monthly-Remaining" 字段。例如,如果您的计划允许每月 1,000 个请求,而您已使用 100 个,则响应标头中的此字段将显示 900 个剩余调用。
要查看您的计划允许的最大 API 请求数,请检查 "X-Zyla-RateLimit-Limit" 响应标头。例如,如果您的计划包括每月 1,000 个请求,此标头将显示 1,000。
"X-Zyla-RateLimit-Reset" 标头显示您的速率限制重置之前的秒数。这告诉您何时您的请求计数将重新开始。例如,如果它显示 3,600,则意味着还有 3,600 秒直到限制重置。
是的,您可以随时通过访问您的账户并在账单页面上选择取消选项来取消您的计划。请注意,升级、降级和取消会立即生效。此外,取消后,您将不再有权访问该服务,即使您的配额中还有剩余调用。
为了让您有机会在没有任何承诺的情况下体验我们的 API,我们提供 7 天免费试用,允许您免费进行最多 50 次 API 调用。此试用只能使用一次,因此我们建议将其应用于您最感兴趣的 API。虽然我们的大多数 API 都提供免费试用,但有些可能不提供。试用在 7 天后或您进行了 50 次请求后结束,以先发生者为准。如果您在试用期间达到 50 次请求限制,您需要"开始您的付费计划"以继续发出请求。您可以在个人资料中的订阅 -> 选择您订阅的 API -> 定价标签下找到"开始您的付费计划"按钮。或者,如果您在第 7 天之前不取消订阅,您的免费试用将结束,您的计划将自动计费,授予您访问计划中指定的所有 API 调用的权限。请记住这一点以避免不必要的费用。
7 天后,您将被收取试用期间订阅的计划的全额费用。因此,在试用期结束前取消很重要。因忘记及时取消而提出的退款请求不被接受。
当您订阅 API 免费试用时,您可以进行最多 50 次 API 调用。如果您希望超出此限制进行额外的 API 调用,API 将提示您执行"开始您的付费计划"。您可以在个人资料中的订阅 -> 选择您订阅的 API -> 定价标签下找到"开始您的付费计划"按钮。
付款订单在每月 20 日至 30 日之间处理。如果您在 20 日之前提交请求,您的付款将在此时间范围内处理。
您可以通过我们的聊天渠道联系我们以获得即时帮助。我们始终在线,时间为上午 8 点至下午 5 点(EST)。如果您在该时间之后联系我们,我们将尽快回复您。此外,您可以通过 [email protected]

相关 API