Basic information

API requests are made at the following address:
https://quix.email/api/v1/<API_KEY>/<METHOD>

Where:
API_KEY - API access key, which you can get on the Profile page.
METHOD - API method name. The list of available methods is presented below.

The response content will be in JSON format with the following fields:

NameTypeDescription
successboolWhether the request was successful. If false, the error field will be present, but the result will be absent, and vice versa.
errorstringError text.
resultmixedResponse Contents (response fields).

You can restrict access to the API with your key by IP. To do this, go to Profile, specify from which IP addresses access will be allowed, enter the password for the account and click the "Change allowed IP addresses" button.

Get account balance

GET
http://quix.email/api/v1/<API_KEY>/accountBalance

Response fields

NameTypeDescription
balancefloatYour account balance in USD.

Get domains list. Returns an array

GET
http://quix.email/api/v1/<API_KEY>/emailDomains

Request parameters

NameTypeRequiredDescription
infoboolfalseWhether to also return information about the number and cost of mail. If true, each element of the returned array will contain the response fields described below. Otherwise (false) - each element of the returned array will contain only a string with the domain. Default - true.

Response fields

NameTypeDescription
domainstringEmail domain.
quantityintAvailable quantity.
pricefloatCost of one mail.
customUsernameboolWhether custom usernames available for this email domain.

Request Email for an activation

GET
http://quix.email/api/v1/<API_KEY>/emailGet

Request parameters

NameTypeRequiredDescription
sitestringtrueThe domain of the site from which the email will be sent.
domainstringtrueEmail domain (see emailDomains request).
usernamestringfalseCustomize username. Available only for our email domains (see emailDomains request).

Response fields

NameTypeDescription
idstringActivation ID.
emailstringEmail you can use.
sitestringThe domain from which the email will be expected.

Get activation status and email content (if any)

GET
http://quix.email/api/v1/<API_KEY>/emailStatus

Request parameters

NameTypeRequiredDescription
idstringtrueActivation ID.
htmlboolfalseGet content as HTML code.

Response fields

NameTypeDescription
idstringActivation ID.
emailstringEmail you can use.
statusstringActivation status, one of:
- completed
- cancelled
- no_email.
datastringContents of the email. Available with completed status.

Cancel activation

GET
http://quix.email/api/v1/<API_KEY>/emailCancel

Request parameters

NameTypeRequiredDescription
idstringtrueActivation ID.

Response fields

NameTypeDescription
cancelledboolWhether the cancellation performed.

Repeat activation

GET
http://quix.email/api/v1/<API_KEY>/emailRepeat

Request parameters

NameTypeRequiredDescription
idstringtrueActivation ID, email and domain which must be reused.

Response fields

NameTypeDescription
idstringNew activation ID.
emailstringEmail you can use.
sitestringThe domain from which the email will be expected.