Code Examples
Developer guides & examples
- Overview
- Features
- Authentication
-
API EndpointsInspector
- GET SSL Health Inspector
- GET Security Headers Inspector
- GET Email Inspector
- GET User Agent Inspector
- GET IP Geolocation
- GET DNS Lookup
- GET Redirect Tracer
- GET Meta Tag Extractor
- GET Link Checker
- GET Robots.txt Parser
- GET Favicon Fetcher
- GET URL Validator
- GET Email Auth Validator
- POST JWT Decoder
- POST Text Analyzer
- POST Image Metadata Extractor
- GET Website Performance Analyzer
- GET My IP Address
- GET HTTP Status Code Lookup
- GET Cron Expression Parser
- POST JSON Diff / Compare
- POST Regex Tester
- GET CORS Checker
- GET Sitemap Parser
- GET Structured Data Validator
- GET Mixed Content Checker
Converter- POST HTML to PDF Converter
- POST Markdown to HTML
- POST JSON Formatter & Validator
- POST JSON to CSV
- POST Base64 Encode/Decode
- GET Phone Number Formatter
- POST JSON Schema Validator
- POST Hash Generator
- GET Color Converter
- GET Timestamp Converter
- POST URL Encoder/Decoder
- POST CSV to JSON Converter
- POST HTML to Markdown Converter
- POST YAML to JSON Converter
- POST XML to JSON Converter
- POST JSON to XML Converter
- POST Markdown to PDF Converter
- POST JSON to YAML Converter
GeneratorLookup - Response Format
- Code Examples
- OpenAPI Docs
Share Your Feedback
Suggest a micro‑API
Get a free API key and start in minutes.
Free tier is for development & small projects.
API Code Examples
Ready-to-use code snippets for integrating with the Apixies API. Copy and paste these examples in cURL, JavaScript, PHP, and Python to get started in seconds.
cURL
curl -X GET \
https://apixies.com/api/v1/inspect-email?email=someone@example.com \
-H 'X-API-Key: YOUR_API_KEY'
JavaScript (fetch)
fetch('https://apixies.com/api/v1/inspect-email?email=someone@example.com', {
headers: { 'X-API-Key': 'YOUR_API_KEY' }
}).then(r => r.json()).then(console.log);
PHP
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://apixies.com/api/v1/inspect-email?email=someone@example.com",
CURLOPT_HTTPHEADER => ["X-API-Key: YOUR_API_KEY"],
]);
$response = curl_exec($curl);
curl_close($curl);
echo $response;
Python (requests)
import requests
resp = requests.get(
"https://apixies.com/api/v1/inspect-email",
params={"email": "someone@example.com"},
headers={"X-API-Key": "YOUR_API_KEY"}
)
data = resp.json()["data"]
print(data)