← Back to Productivity & Business
Certificaty
Certificate generation and management
https://hub.toolweb.in/tools/certificaty/
Endpoints
GET
/
Root
GET
/status
Status
GET
/certificates
Certificates
POST
/generate-token
Gen Token
Request Body (JSON)
{
"domain": "<string>",
"domains": "<array>",
"email": "<string>",
"cert_type": "single"
}
POST
/generate-certificate
Gen Cert
Request Body (JSON)
{
"domain": "<string>",
"order_id": "<string>",
"cert_type": "single"
}
GET
/download/{domain}/{filename}
Dl
Parameters
| Name | In | Type | Required | Description |
|---|---|---|---|---|
| domain | path | string | ✓ | Domain |
| filename | path | string | ✓ | Filename |
Quick Start
# cURL
curl -H "X-API-Key: YOUR_API_KEY" \ https://hub.toolweb.in/tools/certificaty/
# Python
import requests
r = requests.get("https://hub.toolweb.in/tools/certificaty/",
headers={"X-API-Key": "YOUR_API_KEY"})
print(r.json())
# JavaScript
fetch("https://hub.toolweb.in/tools/certificaty/", {
headers: { "X-API-Key": "YOUR_API_KEY" }
}).then(r => r.json()).then(console.log)
Sign up free to get your API key auto-filled.