ote-godaddy.com:certificates
ote-godaddy · Company
ote-godaddy.com:certificates API
Authentication
Sample Requests
Once the certificate order has been created, this method can be used to check the status of the certificate. This method can also be used to retrieve details of the certificates associated to an entitlement.
Hover any highlighted part to learn what it does
curl -X GET "https://api.apis.guru/v2/specs/ote-godaddy.com/certificates/1.0.0/v2/certificates?latest=true&entitlementId=example"
import requests
params = {
"latest": "true",
"entitlementId": "example"
}
response = requests.get(
"https://api.apis.guru/v2/specs/ote-godaddy.com/certificates/1.0.0/v2/certificates",
params=params,
)
print(response.json())const url = new URL('https://api.apis.guru/v2/specs/ote-godaddy.com/certificates/1.0.0/v2/certificates');
url.searchParams.set('latest', 'true');
url.searchParams.set('entitlementId', 'example');
const response = await fetch(url);
const data = await response.json();
console.log(data);package main
import (
"fmt"
"io"
"net/http"
"net/url"
)
func main() {
baseURL, _ := url.Parse("https://api.apis.guru/v2/specs/ote-godaddy.com/certificates/1.0.0/v2/certificates")
q := baseURL.Query()
q.Set("latest", "true")
q.Set("entitlementId", "example")
baseURL.RawQuery = q.Encode()
targetURL := baseURL.String()
req, _ := http.NewRequest("GET", targetURL, nil)
client := &http.Client{}
resp, _ := client.Do(req)
defer resp.Body.Close()
body, _ := io.ReadAll(resp.Body)
fmt.Println(string(body))
}require "net/http"
require "json"
uri = URI("https://api.apis.guru/v2/specs/ote-godaddy.com/certificates/1.0.0/v2/certificates")
uri.query = URI.encode_www_form({
"latest" => "true",
"entitlementId" => "example"
})
http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = uri.scheme == "https"
req = Net::HTTP::Get.new(uri)
res = http.request(req)
puts JSON.parse(res.body)<?php
$url = "https://api.apis.guru/v2/specs/ote-godaddy.com/certificates/1.0.0/v2/certificates?" . http_build_query([
"latest" => "true",
"entitlementId" => "example"
]);
$opts = ["http" => [
"method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));Download certificate by entitlement
Hover any highlighted part to learn what it does
curl -X GET "https://api.apis.guru/v2/specs/ote-godaddy.com/certificates/1.0.0/v2/certificates/download?entitlementId=example"
import requests
params = {
"entitlementId": "example"
}
response = requests.get(
"https://api.apis.guru/v2/specs/ote-godaddy.com/certificates/1.0.0/v2/certificates/download",
params=params,
)
print(response.json())const url = new URL('https://api.apis.guru/v2/specs/ote-godaddy.com/certificates/1.0.0/v2/certificates/download');
url.searchParams.set('entitlementId', 'example');
const response = await fetch(url);
const data = await response.json();
console.log(data);package main
import (
"fmt"
"io"
"net/http"
"net/url"
)
func main() {
baseURL, _ := url.Parse("https://api.apis.guru/v2/specs/ote-godaddy.com/certificates/1.0.0/v2/certificates/download")
q := baseURL.Query()
q.Set("entitlementId", "example")
baseURL.RawQuery = q.Encode()
targetURL := baseURL.String()
req, _ := http.NewRequest("GET", targetURL, nil)
client := &http.Client{}
resp, _ := client.Do(req)
defer resp.Body.Close()
body, _ := io.ReadAll(resp.Body)
fmt.Println(string(body))
}require "net/http"
require "json"
uri = URI("https://api.apis.guru/v2/specs/ote-godaddy.com/certificates/1.0.0/v2/certificates/download")
uri.query = URI.encode_www_form({
"entitlementId" => "example"
})
http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = uri.scheme == "https"
req = Net::HTTP::Get.new(uri)
res = http.request(req)
puts JSON.parse(res.body)<?php
$url = "https://api.apis.guru/v2/specs/ote-godaddy.com/certificates/1.0.0/v2/certificates/download?" . http_build_query([
"entitlementId" => "example"
]);
$opts = ["http" => [
"method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));This method is used to obtain the site seal information for an issued certificate. A site seal is a graphic that the certificate purchaser can embed on their web site to show their visitors information about their SSL certificate. If a web site visitor clicks on the site seal image, a pop-up page
Hover any highlighted part to learn what it does
curl -X GET "https://api.apis.guru/v2/specs/ote-godaddy.com/certificates/1.0.0/v1/certificates/{certificateId}/siteSeal?theme=LIGHT&locale=en"import requests
params = {
"theme": "LIGHT",
"locale": "en"
}
response = requests.get(
"https://api.apis.guru/v2/specs/ote-godaddy.com/certificates/1.0.0/v1/certificates/{certificateId}/siteSeal",
params=params,
)
print(response.json())const url = new URL('https://api.apis.guru/v2/specs/ote-godaddy.com/certificates/1.0.0/v1/certificates/{certificateId}/siteSeal');
url.searchParams.set('theme', 'LIGHT');
url.searchParams.set('locale', 'en');
const response = await fetch(url);
const data = await response.json();
console.log(data);package main
import (
"fmt"
"io"
"net/http"
"net/url"
)
func main() {
baseURL, _ := url.Parse("https://api.apis.guru/v2/specs/ote-godaddy.com/certificates/1.0.0/v1/certificates/{certificateId}/siteSeal")
q := baseURL.Query()
q.Set("theme", "LIGHT")
q.Set("locale", "en")
baseURL.RawQuery = q.Encode()
targetURL := baseURL.String()
req, _ := http.NewRequest("GET", targetURL, nil)
client := &http.Client{}
resp, _ := client.Do(req)
defer resp.Body.Close()
body, _ := io.ReadAll(resp.Body)
fmt.Println(string(body))
}require "net/http"
require "json"
uri = URI("https://api.apis.guru/v2/specs/ote-godaddy.com/certificates/1.0.0/v1/certificates/{certificateId}/siteSeal")
uri.query = URI.encode_www_form({
"theme" => "LIGHT",
"locale" => "en"
})
http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = uri.scheme == "https"
req = Net::HTTP::Get.new(uri)
res = http.request(req)
puts JSON.parse(res.body)<?php
$url = "https://api.apis.guru/v2/specs/ote-godaddy.com/certificates/1.0.0/v1/certificates/{certificateId}/siteSeal?" . http_build_query([
"theme" => "LIGHT",
"locale" => "en"
]);
$opts = ["http" => [
"method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));Postman Setup Guide
- See official documentation for authentication and setup.
What can you build with ote-godaddy.com:certificates?
ote-godaddy.com:certificates is a Company API. Developers commonly use company APIs for:
- enriching CRM records with company firmographics
- building lead-generation and prospecting tools
- verifying business identity and registration details
- monitoring competitors and market intelligence
- powering B2B data enrichment pipelines
No authentication required. This API is open — no signup or key needed. Ideal for quick prototypes and public-facing features. ote-godaddy.com:certificates is free to use, making it a low-risk choice to experiment with.
New to APIs? Read our beginner's guide