Tiny APIs,
Mighty Results.
39+ developer utilities behind a single API key. SSL checks, DNS lookups, email validation, QR codes, converters, and more — with a free development tier.
$ curl https://apixies.io/api/v1/inspect-ssl?domain=github.com
{
"status": "success",
"data": {
"issuer": "DigiCert",
"valid": true,
"days_until_expiry": 142,
"protocol": "TLSv1.3"
}
}
Try the tools in your browser — no signup required
Everything you need, one API away
Five categories of developer utilities — from deep inspection tools to quick generators.
Inspector
SSL checker, email validator, DNS lookup, security headers, meta tags, performance tester
Converter
HTML to PDF, JSON to CSV, Base64, Markdown to HTML, color converter, timestamp converter
Generator
QR code generator, password generator, UUID generator, URL shortener, screenshots
Lookup
WHOIS lookup for domain registration, registrar, and expiry data
System
Health check, readiness probe, API connectivity test
39 endpoints and growing. Browse all endpoints →
Use the tools directly
No signup, no API key, no installation. Run any tool right in your browser — automate later with the API.
Free SSL Certificate Checker
Enter a domain to inspect its SSL/TLS certificate. You'll see the issuer, validi...
Free Email Validator
Enter an email address to validate it. The tool checks format syntax, resolves M...
IP Geolocation Lookup
Enter an IP address to find its approximate geographic location. The tool return...
DNS Lookup Tool
Enter a domain name to query its DNS records. You can look up A, AAAA, MX, TXT,...
WHOIS Domain Lookup
Enter a domain to retrieve its WHOIS registration data. You'll see the registrar...
JSON to CSV Converter
Paste a JSON array of objects to convert it to CSV format. The tool automaticall...
Hash Generator
Enter text to generate its cryptographic hash. Supports MD5, SHA1, SHA256, SHA38...
Free QR Code Generator
Enter text or a URL to generate a QR code. Customize the size, color, background...
Secure Password Generator
Generate strong, random passwords with configurable options. Set the length, cho...
Why Apixies?
Built for developers who value simplicity, consistency, and speed.
39+ tools, one key, zero config
SSL checker, email validator, QR generator, DNS lookup — all behind a single API key. No SDKs, no billing dashboards, no setup.
Same JSON shape, every time
Every endpoint returns the same envelope. Write your error handling once — it works for all 39 endpoints.
Use it now, sign up later
Every tool works in your browser without an account. Need the API? Grab a temporary key — 20 requests/day, no signup, expires in 7 days.
Integration in minutes
A single HTTP call. No SDKs to install, no complex auth flows.
curl https://apixies.io/api/v1/inspect-email?email=test@example.com \
-H "X-API-Key: YOUR_API_KEY"
const res = await fetch('https://apixies.io/api/v1/inspect-email?email=test@example.com', {
headers: { 'X-API-Key': 'YOUR_API_KEY' }
});
const { data } = await res.json();
console.log(data.is_valid, data.is_disposable);
$response = Http::withHeaders([
'X-API-Key' => 'YOUR_API_KEY'
])->get('https://apixies.io/api/v1/inspect-email', [
'email' => 'test@example.com'
]);
$data = $response->json('data');
import requests
resp = requests.get(
"https://apixies.io/api/v1/inspect-email",
params={"email": "test@example.com"},
headers={"X-API-Key": "YOUR_API_KEY"}
)
data = resp.json()["data"]
Get a Temporary API Key
Start making API calls in seconds. No signup, no credit card. 20 requests/day for 7 days.
Quota: requests total (20 requests/day limit)
Expires:
Usage example
curl https://apixies.io/api/v1/inspect-ssl?domain=github.com \
-H "X-API-Key: "
Need higher limits? Create a free account for 75 requests/day
Free development tier
Apixies offers a free development tier designed for rapid prototyping and small projects.
Usage limits apply to ensure reliability and stability.
As Apixies evolves, production options may be introduced to support higher usage.
Use the sandbox to test any endpoint without signing up. 50 requests per token, 1 token per day, 24-hour expiry. Daily quota: 20 requests/day.
Create a free account for 75 requests/day and permanent API keys.
No-signup API keys: 200 requests total, valid for 7 days, max 3 per IP. Daily quota: 20 requests/day.
Apixies is a collection of small utility APIs with one key and a consistent JSON response format. Read more about Apixies →