Add a domain for verification
curl -X POST "https://api.5centscdn.com/v2/account/dv" \
-H "Content-Type: application/json" \
-H "X-API-Key: YOUR_API_KEY" \
-d '{
"domain": "example.com"
}'
import requests
import json
url = "https://api.5centscdn.com/v2/account/dv"
headers = {
"Content-Type": "application/json",
"X-API-Key": "YOUR_API_KEY"
}
data = {
"domain": "example.com"
}
response = requests.post(url, headers=headers, json=data)
print(response.json())
const response = await fetch("https://api.5centscdn.com/v2/account/dv", {
method: "POST",
headers: {
"Content-Type": "application/json",
"X-API-Key": "YOUR_API_KEY"
},
body: JSON.stringify({
"domain": "example.com"
})
});
const data = await response.json();
console.log(data);
package main
import (
"fmt"
"net/http"
"bytes"
"encoding/json"
)
func main() {
data := []byte(`{
"domain": "example.com"
}`)
req, err := http.NewRequest("POST", "https://api.5centscdn.com/v2/account/dv", bytes.NewBuffer(data))
if err != nil {
panic(err)
}
req.Header.Set("Content-Type", "application/json")
req.Header.Set("X-API-Key", "YOUR_API_KEY")
client := &http.Client{}
resp, err := client.Do(req)
if err != nil {
panic(err)
}
defer resp.Body.Close()
fmt.Println("Response Status:", resp.Status)
}
require 'net/http'
require 'json'
uri = URI('https://api.5centscdn.com/v2/account/dv')
http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = true
request = Net::HTTP::Post.new(uri)
request['Content-Type'] = 'application/json'
request['X-API-Key'] = 'YOUR_API_KEY'
request.body = '{
"domain": "example.com"
}'
response = http.request(request)
puts response.body
{
"result": "success",
"message": "Domain added. Please add TXT DNS record for verification",
"domain": {
"id": 12345,
"serviceid": 10001,
"domain": "example.com",
"validated": "N",
"txtrecord": {
"host": "abc123def456",
"ttl": 3600,
"value": "xyz789uvw012"
}
}
}
/account/dv
Target server for requests. Edit to use your own host.
API key (sent in header)
The media type of the request body
Top-level domain to verify (e.g. example.com). Subdomains are not accepted. Unicode/IDN domains are accepted and converted to punycode internally.
Request Preview
Response
Response will appear here after sending the request
Authentication
API Key for authentication. Provide your API key in the header.
Body
Top-level domain to verify (e.g. example.com). Subdomains are not accepted. Unicode/IDN domains are accepted and converted to punycode internally.
Responses
Operation outcome.
Human-readable description of the operation outcome.
Newly created domain verification record with TXT record details.
Unique identifier of the domain verification record.
Service account identifier that owns this record.
Domain name registered for verification.
Y if the domain has been successfully verified, N if verification is pending.
YNDNS TXT record details required for domain ownership verification.
TXT record host/name prefix to use when creating the DNS TXT record.
Recommended TTL in seconds for the DNS TXT record.
TXT record value to set in DNS for domain ownership proof.