Logo API
Identify brands instantly with our Logo API. Provide an image, and our algorithm detects and retrieves brand logos and related information from various sources.
cURL 'https://api.enrich.so/v1/api/search-logo?url=google.com' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json'const axios = require('axios');
axios.get('https://api.enrich.so/v1/api/search-logo?url=google.com', {
headers: {accept: 'application/json', Authorization: 'Bearer <token>'}
})
.then(response => {
console.log(response.data);
})
.catch(error => {
console.log(error);
});// Some codeimport requests
payload = {'url': 'google.com'}
headers = {'accept': 'application/json', 'authorization': 'Bearer <token>'}
resp = requests.get('https://api.enrich.so/v1/api/search-logo', params=payload, headers=headers)
print (resp.text)OkHttpClient client = new OkHttpClient();
Request request = new Request.Builder()
.url("https://api.enrich.so/v1/api/search-logo?url=google.com")
.get()
.addHeader("accept", "application/json")
.addHeader("authorization", "Bearer <token>")
.build();
Response response = client.newCall(request).execute();Example response
Status code: 200 OK
image/jpegLast updated