/uspto_trademarks/marks
curl --request POST \
--url https://api.anysite.io/api/uspto_trademarks/marks \
--header 'Content-Type: application/json' \
--header 'access-token: <api-key>' \
--data '
{
"timeout": 300,
"serial_number": "<string>",
"registration_number": "<string>"
}
'import requests
url = "https://api.anysite.io/api/uspto_trademarks/marks"
payload = {
"timeout": 300,
"serial_number": "<string>",
"registration_number": "<string>"
}
headers = {
"access-token": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'access-token': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({timeout: 300, serial_number: '<string>', registration_number: '<string>'})
};
fetch('https://api.anysite.io/api/uspto_trademarks/marks', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.anysite.io/api/uspto_trademarks/marks",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'timeout' => 300,
'serial_number' => '<string>',
'registration_number' => '<string>'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"access-token: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.anysite.io/api/uspto_trademarks/marks"
payload := strings.NewReader("{\n \"timeout\": 300,\n \"serial_number\": \"<string>\",\n \"registration_number\": \"<string>\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("access-token", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.anysite.io/api/uspto_trademarks/marks")
.header("access-token", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"timeout\": 300,\n \"serial_number\": \"<string>\",\n \"registration_number\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.anysite.io/api/uspto_trademarks/marks")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["access-token"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"timeout\": 300,\n \"serial_number\": \"<string>\",\n \"registration_number\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body[
{
"serial_number": "<string>",
"@type": "UsptoTrademarksMark",
"registration_number": "<string>",
"wordmark": "<string>",
"case_status": "<string>",
"status_date": "<string>",
"is_alive": true,
"is_registered": true,
"mark_type": [],
"mark_description": [],
"is_standard_char_claimed": true,
"mark_drawing_code": "<string>",
"design_codes": [],
"disclaimer": "<string>",
"filing_date": "<string>",
"registration_date": "<string>",
"publication_date": "<string>",
"abandon_date": "<string>",
"registration_type": [],
"filed_basis": [],
"current_basis": [],
"translation": "<string>",
"transliteration": "<string>",
"foreign_basis": [],
"goods_and_services": [],
"classes": [],
"owners": [],
"attorney": {
"@type": "UsptoTrademarksParty",
"name": "<string>",
"legal_entity": "<string>",
"citizenship": "<string>",
"address": {
"@type": "UsptoTrademarksAddress",
"street": "<string>",
"city": "<string>",
"state": "<string>",
"postal_code": "<string>",
"country": "<string>"
}
},
"correspondent": {
"@type": "UsptoTrademarksParty",
"name": "<string>",
"legal_entity": "<string>",
"citizenship": "<string>",
"address": {
"@type": "UsptoTrademarksAddress",
"street": "<string>",
"city": "<string>",
"state": "<string>",
"postal_code": "<string>",
"country": "<string>"
}
},
"maintenance": {
"@type": "UsptoTrademarksMaintenance",
"is_cancelled_or_expired": true,
"is_cancelled": true,
"section_15_acknowledged": true,
"next_form_to_file": 123,
"earliest_filing_date": "<string>",
"latest_filing_date_without_fee": "<string>",
"latest_filing_date_with_fee": "<string>"
},
"prosecution_history": [],
"assignments": [],
"image": "<string>"
}
]{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}/uspto_trademarks
/uspto_trademarks/marks
Get a U.S. trademark status record by serial number or registration number
Price: 1 credit
⚠️ Common errors: 412: Trademark not found
POST
/
api
/
uspto_trademarks
/
marks
/uspto_trademarks/marks
curl --request POST \
--url https://api.anysite.io/api/uspto_trademarks/marks \
--header 'Content-Type: application/json' \
--header 'access-token: <api-key>' \
--data '
{
"timeout": 300,
"serial_number": "<string>",
"registration_number": "<string>"
}
'import requests
url = "https://api.anysite.io/api/uspto_trademarks/marks"
payload = {
"timeout": 300,
"serial_number": "<string>",
"registration_number": "<string>"
}
headers = {
"access-token": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'access-token': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({timeout: 300, serial_number: '<string>', registration_number: '<string>'})
};
fetch('https://api.anysite.io/api/uspto_trademarks/marks', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.anysite.io/api/uspto_trademarks/marks",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'timeout' => 300,
'serial_number' => '<string>',
'registration_number' => '<string>'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"access-token: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.anysite.io/api/uspto_trademarks/marks"
payload := strings.NewReader("{\n \"timeout\": 300,\n \"serial_number\": \"<string>\",\n \"registration_number\": \"<string>\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("access-token", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.anysite.io/api/uspto_trademarks/marks")
.header("access-token", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"timeout\": 300,\n \"serial_number\": \"<string>\",\n \"registration_number\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.anysite.io/api/uspto_trademarks/marks")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["access-token"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"timeout\": 300,\n \"serial_number\": \"<string>\",\n \"registration_number\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body[
{
"serial_number": "<string>",
"@type": "UsptoTrademarksMark",
"registration_number": "<string>",
"wordmark": "<string>",
"case_status": "<string>",
"status_date": "<string>",
"is_alive": true,
"is_registered": true,
"mark_type": [],
"mark_description": [],
"is_standard_char_claimed": true,
"mark_drawing_code": "<string>",
"design_codes": [],
"disclaimer": "<string>",
"filing_date": "<string>",
"registration_date": "<string>",
"publication_date": "<string>",
"abandon_date": "<string>",
"registration_type": [],
"filed_basis": [],
"current_basis": [],
"translation": "<string>",
"transliteration": "<string>",
"foreign_basis": [],
"goods_and_services": [],
"classes": [],
"owners": [],
"attorney": {
"@type": "UsptoTrademarksParty",
"name": "<string>",
"legal_entity": "<string>",
"citizenship": "<string>",
"address": {
"@type": "UsptoTrademarksAddress",
"street": "<string>",
"city": "<string>",
"state": "<string>",
"postal_code": "<string>",
"country": "<string>"
}
},
"correspondent": {
"@type": "UsptoTrademarksParty",
"name": "<string>",
"legal_entity": "<string>",
"citizenship": "<string>",
"address": {
"@type": "UsptoTrademarksAddress",
"street": "<string>",
"city": "<string>",
"state": "<string>",
"postal_code": "<string>",
"country": "<string>"
}
},
"maintenance": {
"@type": "UsptoTrademarksMaintenance",
"is_cancelled_or_expired": true,
"is_cancelled": true,
"section_15_acknowledged": true,
"next_form_to_file": 123,
"earliest_filing_date": "<string>",
"latest_filing_date_without_fee": "<string>",
"latest_filing_date_with_fee": "<string>"
},
"prosecution_history": [],
"assignments": [],
"image": "<string>"
}
]{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}Authorizations
API token from the dashboard
Headers
Body
application/json
Response
Successful Response
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
⌘I