Why some websites give access to their data through REST APIs?


3

Quite a lot of websites (glassdoor for example) give access to data about jobs, salaries, etc. through a REST API. So basically I can make an API call, get results and show the data on my website. But isn't this stealing traffic from glassdoor?

If people can get the data on my site why would they visit glassdoor? Why does glassdoor bother giving away data for free?

Data Request API Web Services

asked Oct 14 '13 at 04:54
Blank
Victor
137 points

1 Answer


6

You are not stealing traffic from them, you are accessing data they have collected from their traffic.

Reason they do it is it creates an ecosystem around their core platform.

The benefit to them is they become a central point of reference for other systems, like login and like with Facebook.

The chance of you wasting your time to build the same site and having your site be something that competes with them for their actual target market is very low. Remember the technical solution is only 20%-30% of the battle, there is marketing, relationships and for that site a strong network effect that you don't have.

Their intent is to provide you with the data you need to build something cool on top, which in turn helps them be a relevant big player in the eco-system.

  • If developers use their service, there are other services they can also benefit from
  • If big players use their service then they can charge for it at scale.
  • IF they are showing you some info, there is probably a lot more under the hood that you can't get to without paying for it.
  • Every request for data you make gives them a wealth of info about what people are interested in, where they are coming from and gives them insight into what to focus their efforts on.
As for what you should do with the API :

Build something on top, which uses their data, is very cool, gets people using it, extends where they are going (say an iPhone or Android interface) and then present yourself as a buy out target for them.

This is a far more effective strategy for you than trying to do a copy cat site.

answered Oct 14 '13 at 09:22
Blank
Robin Vessey
8,394 points
  • thanks for a great answer – Victor 10 years ago
  • Not a problem, glad I could help – Robin Vessey 10 years ago

Your Answer

  • Bold
  • Italic
  • • Bullets
  • 1. Numbers
  • Quote
Not the answer you're looking for? Ask your own question or browse other questions in these topics:

Data Request API Web Services