A lightweight API to verify Google account existence by username or email.
- Features
- Getting Started
- API Endpoints
- Response Format
- Requirements
- Pricing
- Support
- Legal Compliance
✅ Single account verification
✅ Bulk check up to 10 accounts at once
✅ Supports emails and usernames
✅ Fast JSON responses
✅ Enterprise-grade reliability
-
Get API Key
- Subscribe via RapidAPI Hub
- Get your
X-RapidAPI-Key
from your dashboard
-
Base URL
https://google-checker2.p.rapidapi.com
Endpoint
POST /check
Request
{
"input": "[email protected]"
}
cURL Example
curl --request POST \
--url https://google-checker2.p.rapidapi.com/check \
--header 'X-RapidAPI-Host: google-checker2.p.rapidapi.com' \
--header 'X-RapidAPI-Key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--data '{"input": "[email protected]"}'
Endpoint
POST /check_bulk
Request
{
"input": [
"[email protected]",
"googleuser123"
]
}
Python Example
import requests
url = "https://google-checker2.p.rapidapi.com/check_bulk"
payload = {"input": ["[email protected]", "googleuser123"]}
headers = {
"X-RapidAPI-Key": "YOUR_API_KEY",
"X-RapidAPI-Host": "google-checker2.p.rapidapi.com",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.json())
Successful Response
{
"live": true,
"note": ""
}
Bulk Response
[
{
"live": true,
"identifier": "[email protected]",
"note": ""
},
{
"live": true,
"identifier": "[email protected]",
"note": ""
}
]
note=suspended if the account were suspended
-
Minimum input length: 3 characters
-
Bulk requests limited to 10 items per call
-
Valid input types:
- Email addresses
- Usernames
Flexible plans available through RapidAPI.
Free tier available for testing and low-volume usage.
For technical issues or enterprise inquiries:
📧 [email protected]
This API is intended for legitimate use cases only. Users are responsible for:
- Complying with Google's Terms of Service
- Adhering to all applicable data privacy laws
- Obtaining proper consent for data processing
This service is not affiliated with or endorsed by Alphabet Inc.