Temp Email
  1. Gmail
Temp Email
  • Welcome
  • Authentication
    • Use Password
      POST
    • Use Token
      POST
  • Domains
    • Get Domains
      GET
    • Get Premium Domains
      GET
    • Get Private Domains
      GET
  • Account
    • Get an Account
      GET
    • Get an Premium Account
      GET
    • Get an Private Account
      GET
  • Inbox
    • Gets Messages
      POST
    • Get Message
      POST
    • Deletes Message
      DELETE
  • Gmail
    • Retrieve all private Gmail IDs
      POST
    • Purchase private Gmail IDs
      POST
    • Generate private Gmail Id
      POST
    • Gets Messages
      POST
    • Get Message
      POST
    • Deletes Message
      DELETE
  1. Gmail

Retrieve all private Gmail IDs

POST
/gmail
The response will be paginated, with the number of items per page determined by the limit parameter.
Use the page parameter to navigate through multiple pages of results.
The total count of Gmail IDs will be included in the response, allowing you to determine the total number of pages.
Results are typically ordered by creation date, with the most recently added Gmail IDs appearing first.
This endpoint provides a comprehensive view of all Gmail IDs currently linked to your account.

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Body Params application/json
limit
integer 
optional
Specifies the maximum number of Gmail IDs to return per page. Defaults to 20 if not provided.
Default:
20
page
integer 
required
Specifies the page number to retrieve. Pagination starts at page 1. Default value is 1.
Default:
1
Example
{
    "limit": 20,
    "page": 1
}

Request samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://22.do/api/v2/gmail' \
--header 'Content-Type: application/json' \
--data-raw '{
    "limit": 20,
    "page": 1
}'

Responses

🟢200Success
application/json
Body
code
integer 
required
status
boolean 
required
msg
string 
required
data
object 
required
items
array[string]
required
domains
array[string]
required
count
integer 
required
limit
integer 
required
current
integer 
required
Example
{
    "code": 200,
    "status": true,
    "msg": "success",
    "data": {
        "items": [
            "aa.bb.cc",
            "aa.b.bcc",
            "a.abbcc"
        ],
        "domains": [
            "@gmail.com",
            "@googlemail.com"
        ],
        "count": 3,
        "limit": 20,
        "current": 1
    }
}
Previous
Gmail
Next
Purchase private Gmail IDs
Built with