Get PRV trademarks for a company
curl --request GET \
--url https://lens-api.tic.io/companies/{id}/trademarks \
--header 'x-api-key: <api-key>'import requests
url = "https://lens-api.tic.io/companies/{id}/trademarks"
headers = {"x-api-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'x-api-key': '<api-key>'}};
fetch('https://lens-api.tic.io/companies/{id}/trademarks', 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://lens-api.tic.io/companies/{id}/trademarks",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"x-api-key: <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"
"net/http"
"io"
)
func main() {
url := "https://lens-api.tic.io/companies/{id}/trademarks"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("x-api-key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://lens-api.tic.io/companies/{id}/trademarks")
.header("x-api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://lens-api.tic.io/companies/{id}/trademarks")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["x-api-key"] = '<api-key>'
response = http.request(request)
puts response.read_body[
{
"trademarkId": 123,
"transactionId": 123,
"applicationNumber": "<string>",
"applicationDate": "2023-11-07T05:31:56Z",
"applicationLanguageCode": "<string>",
"registrationDate": "2023-11-07T05:31:56Z",
"registrationNumber": "<string>",
"registrationOfficeCode": "<string>",
"kindMark": "<string>",
"expiryDate": "2023-11-07T05:31:56Z",
"markCurrentStatusCode": "<string>",
"markCurrentStatusCodeDescription": "<string>",
"markFeature": "<string>",
"markFeatureDescription": "<string>",
"markVerbalElementText": "<string>",
"markDescription": "<string>",
"useLimitationText": "<string>",
"priorityDetails": "<string>",
"publicationDate": "2023-11-07T05:31:56Z",
"publicationSection": "<string>",
"publicationTypeName": "<string>",
"firstSeenAtUtc": "2023-11-07T05:31:56Z",
"lastUpdatedAtUtc": "2023-11-07T05:31:56Z",
"fileId": 123,
"prv_TrademarkApplicant": [
{
"trademarkApplicantId": 123,
"trademarkId": 123,
"applicantIdentifier": "<string>",
"applicantName": "<string>",
"applicantAddress": "<string>",
"applicantAddressCountryCode": "<string>",
"applicantReference": "<string>",
"fileId": 123,
"firstSeenAtUtc": "2023-11-07T05:31:56Z",
"lastUpdatedAtUtc": "2023-11-07T05:31:56Z",
"companyId": 123,
"personId": 123
}
],
"prv_TrademarkClass": [
{
"trademarkClassId": 123,
"trademarkId": 123,
"classNumber": "<string>",
"goodsServicesDescription": "<string>",
"fileId": 123,
"firstSeenAtUtc": "2023-11-07T05:31:56Z",
"lastUpdatedAtUtc": "2023-11-07T05:31:56Z"
}
],
"prv_TrademarkImage": [
{
"trademarkImageId": 123,
"trademarkId": 123,
"markIdentifier": "<string>",
"mediaFileName": "<string>",
"mediaFileFormat": "<string>",
"markImageColourClaimedText": "<string>",
"categoryCode": "<string>",
"firstSeenAtUtc": "2023-11-07T05:31:56Z",
"lastUpdatedAtUtc": "2023-11-07T05:31:56Z",
"fileId": 123
}
],
"prv_TrademarkRepresentative": [
{
"trademarkRepresentativeId": 123,
"trademarkId": 123,
"representativeIdentifier": "<string>",
"representativeName": "<string>",
"representativeAddress": "<string>",
"representativeAddressCountryCode": "<string>",
"representativeReference": "<string>",
"fileId": 123,
"firstSeenAtUtc": "2023-11-07T05:31:56Z",
"lastUpdatedAtUtc": "2023-11-07T05:31:56Z",
"companyId": 123,
"personId": 123
}
],
"prv_TrademarkEvent": [
{
"trademarkEventId": 123,
"trademarkId": 123,
"eventDate": "2023-11-07T05:31:56Z",
"eventCode": "<string>",
"fileId": 123,
"firstSeenAtUtc": "2023-11-07T05:31:56Z",
"lastUpdatedAtUtc": "2023-11-07T05:31:56Z"
}
]
}
]Companies
Get PRV trademarks for a company
Returns trademarks registered with PRV (the Swedish Patent and Registration Office) where the company is an applicant, together with classes, events, images, and representatives.
GET
/
companies
/
{id}
/
trademarks
Get PRV trademarks for a company
curl --request GET \
--url https://lens-api.tic.io/companies/{id}/trademarks \
--header 'x-api-key: <api-key>'import requests
url = "https://lens-api.tic.io/companies/{id}/trademarks"
headers = {"x-api-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'x-api-key': '<api-key>'}};
fetch('https://lens-api.tic.io/companies/{id}/trademarks', 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://lens-api.tic.io/companies/{id}/trademarks",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"x-api-key: <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"
"net/http"
"io"
)
func main() {
url := "https://lens-api.tic.io/companies/{id}/trademarks"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("x-api-key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://lens-api.tic.io/companies/{id}/trademarks")
.header("x-api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://lens-api.tic.io/companies/{id}/trademarks")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["x-api-key"] = '<api-key>'
response = http.request(request)
puts response.read_body[
{
"trademarkId": 123,
"transactionId": 123,
"applicationNumber": "<string>",
"applicationDate": "2023-11-07T05:31:56Z",
"applicationLanguageCode": "<string>",
"registrationDate": "2023-11-07T05:31:56Z",
"registrationNumber": "<string>",
"registrationOfficeCode": "<string>",
"kindMark": "<string>",
"expiryDate": "2023-11-07T05:31:56Z",
"markCurrentStatusCode": "<string>",
"markCurrentStatusCodeDescription": "<string>",
"markFeature": "<string>",
"markFeatureDescription": "<string>",
"markVerbalElementText": "<string>",
"markDescription": "<string>",
"useLimitationText": "<string>",
"priorityDetails": "<string>",
"publicationDate": "2023-11-07T05:31:56Z",
"publicationSection": "<string>",
"publicationTypeName": "<string>",
"firstSeenAtUtc": "2023-11-07T05:31:56Z",
"lastUpdatedAtUtc": "2023-11-07T05:31:56Z",
"fileId": 123,
"prv_TrademarkApplicant": [
{
"trademarkApplicantId": 123,
"trademarkId": 123,
"applicantIdentifier": "<string>",
"applicantName": "<string>",
"applicantAddress": "<string>",
"applicantAddressCountryCode": "<string>",
"applicantReference": "<string>",
"fileId": 123,
"firstSeenAtUtc": "2023-11-07T05:31:56Z",
"lastUpdatedAtUtc": "2023-11-07T05:31:56Z",
"companyId": 123,
"personId": 123
}
],
"prv_TrademarkClass": [
{
"trademarkClassId": 123,
"trademarkId": 123,
"classNumber": "<string>",
"goodsServicesDescription": "<string>",
"fileId": 123,
"firstSeenAtUtc": "2023-11-07T05:31:56Z",
"lastUpdatedAtUtc": "2023-11-07T05:31:56Z"
}
],
"prv_TrademarkImage": [
{
"trademarkImageId": 123,
"trademarkId": 123,
"markIdentifier": "<string>",
"mediaFileName": "<string>",
"mediaFileFormat": "<string>",
"markImageColourClaimedText": "<string>",
"categoryCode": "<string>",
"firstSeenAtUtc": "2023-11-07T05:31:56Z",
"lastUpdatedAtUtc": "2023-11-07T05:31:56Z",
"fileId": 123
}
],
"prv_TrademarkRepresentative": [
{
"trademarkRepresentativeId": 123,
"trademarkId": 123,
"representativeIdentifier": "<string>",
"representativeName": "<string>",
"representativeAddress": "<string>",
"representativeAddressCountryCode": "<string>",
"representativeReference": "<string>",
"fileId": 123,
"firstSeenAtUtc": "2023-11-07T05:31:56Z",
"lastUpdatedAtUtc": "2023-11-07T05:31:56Z",
"companyId": 123,
"personId": 123
}
],
"prv_TrademarkEvent": [
{
"trademarkEventId": 123,
"trademarkId": 123,
"eventDate": "2023-11-07T05:31:56Z",
"eventCode": "<string>",
"fileId": 123,
"firstSeenAtUtc": "2023-11-07T05:31:56Z",
"lastUpdatedAtUtc": "2023-11-07T05:31:56Z"
}
]
}
]Pro+ tier
Authorizations
Path Parameters
Internal company ID
Response
List of trademarks
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