Need Help to retrieve an API result in Worksheet

Atri R

New Member
Joined
Mar 26, 2018
Messages
11
Hello,

I am designing an excel file which will provide me the company website URL taking the Company name as Input. For this I have found out a free API which does this exact Name->Domain mapping.

The API goes like this:

Code:
https://autocomplete.clearbit.com/v1/companies/suggest?query=[C_NAME]

where C_NAME is the company names present in the worksheet column.

  • The response of the API usually has 3 parameters (name, domain and logo). I would like to have the domain value only to be inserted in the excel column.
  • At times, the response can be multiple sub nodes - in that case I would love to have the first domain only(which is possibly most relevant).
  • Also, sometimes the response might be empty when the API is not able to lookup for the company name. In this case, the cell can be populated with a default value.

Can anyone help me write a macro/VBA code for this small function? It would be of a great help.

TIA
 

Excel Facts

Which lookup functions find a value equal or greater than the lookup value?
MATCH uses -1 to find larger value (lookup table must be sorted ZA). XLOOKUP uses 1 to find values greater and does not need to be sorted.
Can you provide some example company names?
 
Upvote 0
Can you provide some example company names?

Sure, few samples:

Code:
https://autocomplete.clearbit.com/v1/companies/suggest?query=Oracle
https://autocomplete.clearbit.com/v1/companies/suggest?query=Textlocal
https://autocomplete.clearbit.com/v1/companies/suggest?query=Trello

All the above cases, it will have multiple sub-nodes, In these cases I need the first 'domain' value from the response. You can quickly browse any of the URL to get an idea.

Thanks
 
Upvote 0
Sure, few samples:

Code:
https://autocomplete.clearbit.com/v1/companies/suggest?query=Oracle
https://autocomplete.clearbit.com/v1/companies/suggest?query=Textlocal
https://autocomplete.clearbit.com/v1/companies/suggest?query=Trello

All the above cases, it will have multiple sub-nodes, In these cases I need the first 'domain' value from the response. You can quickly browse any of the URL to get an idea.

Thanks


Anyone? Thanks!
 
Upvote 0
There is no 'code' as such, well not VBA anyway.

The workbook uses two queries in Power Query to pull the data.

If you select a cell in the table with the results you should have an Edit option on the ribbon.

If you press that it should open Power Query and you should be able to see the queries.
 
Upvote 0
There is no 'code' as such, well not VBA anyway.

The workbook uses two queries in Power Query to pull the data.

If you select a cell in the table with the results you should have an Edit option on the ribbon.

If you press that it should open Power Query and you should be able to see the queries.

Hi Norie, Sorry - where's the edit option? A screenshot should really help!

Thanks a lot
 
Upvote 0
Now you've got me, I'm not at a computer right now so can't recall where it is on a PC never mind a Mac.

I'll check it out and get back to you.

PS Does the workbook actually work for you?

What happens if you add more company names to the table on the first sheet and then right click the table on the second sheet and select Refresh?
 
Upvote 0

Forum statistics

Threads
1,215,790
Messages
6,126,923
Members
449,348
Latest member
Rdeane

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top