List logo matches
brand_protection.v2.logo_matches.get(LogoMatchGetParams**kwargs) -> LogoMatchGetResponse
GET/accounts/{account_id}/cloudforce-one/v2/brand-protection/logo/matches
Get paginated list of logo matches for a specific brand protection logo query
Security
API Token
The preferred authorization scheme for interacting with the Cloudflare API. Create a token.
Example:
Accepted Permissions (at least one required)
Parameters
List logo matches
import os
from cloudflare import Cloudflare
client = Cloudflare(
api_token=os.environ.get("CLOUDFLARE_API_TOKEN"), # This is the default and can be omitted
)
logo_match = client.brand_protection.v2.logo_matches.get(
account_id="x",
query_id="x",
)
print(logo_match.matches){
"matches": [
{
"id": 0,
"domain": "domain",
"matched_at": "matched_at",
"query_id": 0,
"registrar": "registrar",
"similarity_score": 0,
"url_scan_id": "url_scan_id",
"content_type": "content_type",
"image_data": "image_data"
}
],
"total": 0
}Returns Examples
{
"matches": [
{
"id": 0,
"domain": "domain",
"matched_at": "matched_at",
"query_id": 0,
"registrar": "registrar",
"similarity_score": 0,
"url_scan_id": "url_scan_id",
"content_type": "content_type",
"image_data": "image_data"
}
],
"total": 0
}