Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is an API language specific

Tags:

bing-api

This is probably a pretty basic question, but are APIs language specific. In General, do certain languages only work with certain APIs or should any language be able to talk to any API.

Specifically, Bing Webmaster Tools API has code example in C#. Does that mean I can't access the API in Python?

Thanks in advance!

like image 916
cloud36 Avatar asked Dec 11 '25 09:12

cloud36


1 Answers

If an API is exposed via HTTP and returns a language-neutral format like JSON or XML (which most popular third-party APIs do) then there's no restriction on what programming language you can use to parse the API responses.

Some API providers may provide specific client libraries e.g,. The Facebook JavaScript SDK, but this doesn't preclude using a different language, it just means you'll get less support in doing so.

like image 154
Cormac Driver Avatar answered Dec 16 '25 04:12

Cormac Driver