ote-godaddy.com:abuse
ote-godaddy · Company
GoDaddy Abuse API Terms of Use: GoDaddy’s Abuse API is provided to simplify and standardize the abuse reporting experience. To help us streamline the review of abuse reports, you acknowledge and agree that your use of GoDaddy’s Abuse API is subject to the following quality metrics and terms of use. GoDaddy may, in its sole and absolute discretion, change or modify these terms, and such changes or modifications shall be effective immediately upon notice to you. Your use o
Authentication
Sample Requests
List all abuse tickets ids that match user provided filters
Hover any highlighted part to learn what it does
curl -X GET "https://api.apis.guru/v2/specs/ote-godaddy.com/abuse/1.0.0/v1/abuse/tickets?type=A_RECORD&limit=100&closed=false&offset=0&target=example&createdEnd=example&createdStart=example&sourceDomainOrIp=example"
import requests
params = {
"type": "A_RECORD",
"limit": "100",
"closed": "false",
"offset": "0",
"target": "example",
"createdEnd": "example",
"createdStart": "example",
"sourceDomainOrIp": "example"
}
response = requests.get(
"https://api.apis.guru/v2/specs/ote-godaddy.com/abuse/1.0.0/v1/abuse/tickets",
params=params,
)
print(response.json())const url = new URL('https://api.apis.guru/v2/specs/ote-godaddy.com/abuse/1.0.0/v1/abuse/tickets');
url.searchParams.set('type', 'A_RECORD');
url.searchParams.set('limit', '100');
url.searchParams.set('closed', 'false');
url.searchParams.set('offset', '0');
url.searchParams.set('target', 'example');
url.searchParams.set('createdEnd', 'example');
url.searchParams.set('createdStart', 'example');
url.searchParams.set('sourceDomainOrIp', '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/abuse/1.0.0/v1/abuse/tickets")
q := baseURL.Query()
q.Set("type", "A_RECORD")
q.Set("limit", "100")
q.Set("closed", "false")
q.Set("offset", "0")
q.Set("target", "example")
q.Set("createdEnd", "example")
q.Set("createdStart", "example")
q.Set("sourceDomainOrIp", "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/abuse/1.0.0/v1/abuse/tickets")
uri.query = URI.encode_www_form({
"type" => "A_RECORD",
"limit" => "100",
"closed" => "false",
"offset" => "0",
"target" => "example",
"createdEnd" => "example",
"createdStart" => "example",
"sourceDomainOrIp" => "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/abuse/1.0.0/v1/abuse/tickets?" . http_build_query([
"type" => "A_RECORD",
"limit" => "100",
"closed" => "false",
"offset" => "0",
"target" => "example",
"createdEnd" => "example",
"createdStart" => "example",
"sourceDomainOrIp" => "example"
]);
$opts = ["http" => [
"method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));Return the abuse ticket data for a given ticket id
Hover any highlighted part to learn what it does
curl -X GET "https://api.apis.guru/v2/specs/ote-godaddy.com/abuse/1.0.0/v1/abuse/tickets/{ticketId}"import requests
response = requests.get(
"https://api.apis.guru/v2/specs/ote-godaddy.com/abuse/1.0.0/v1/abuse/tickets/{ticketId}",
)
print(response.json())const url = 'https://api.apis.guru/v2/specs/ote-godaddy.com/abuse/1.0.0/v1/abuse/tickets/{ticketId}';
const response = await fetch(url);
const data = await response.json();
console.log(data);package main
import (
"fmt"
"io"
"net/http"
)
func main() {
targetURL := "https://api.apis.guru/v2/specs/ote-godaddy.com/abuse/1.0.0/v1/abuse/tickets/{ticketId}"
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/abuse/1.0.0/v1/abuse/tickets/{ticketId}")
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/abuse/1.0.0/v1/abuse/tickets/{ticketId}";
$opts = ["http" => [
"method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));Create a new abuse ticket
Hover any highlighted part to learn what it does
curl -X POST "https://api.apis.guru/v2/specs/ote-godaddy.com/abuse/1.0.0/v1/abuse/tickets"
import requests
response = requests.post(
"https://api.apis.guru/v2/specs/ote-godaddy.com/abuse/1.0.0/v1/abuse/tickets",
)
print(response.json())const url = 'https://api.apis.guru/v2/specs/ote-godaddy.com/abuse/1.0.0/v1/abuse/tickets';
const response = await fetch(url, {
method: 'POST',
});
const data = await response.json();
console.log(data);package main
import (
"fmt"
"io"
"net/http"
)
func main() {
targetURL := "https://api.apis.guru/v2/specs/ote-godaddy.com/abuse/1.0.0/v1/abuse/tickets"
req, _ := http.NewRequest("POST", 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/abuse/1.0.0/v1/abuse/tickets")
http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = uri.scheme == "https"
req = Net::HTTP::Post.new(uri)
res = http.request(req)
puts JSON.parse(res.body)<?php
$url = "https://api.apis.guru/v2/specs/ote-godaddy.com/abuse/1.0.0/v1/abuse/tickets";
$opts = ["http" => [
"method" => "POST",
]];
$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:abuse?
ote-godaddy.com:abuse 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:abuse is free to use, making it a low-risk choice to experiment with.
New to APIs? Read our beginner's guide · Learn about API keys · What is REST?