Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Bloomberg Open API announced recently - is it just the Bloomberg SDK which had been (limitedly) exposed to public for quite a while?

My understanding is that Bloomberg SDK is possible to use only on the machine with a Bloomberg Terminal installed, but the recently announced Open API (which is syntactically the same) will be possible to use from any machine.

Is that correct? Are there any restrictions on the new API (say, delayed responses etc)? Just cannot believe they're giving away for free something that costed money - any clarifications are welcome!


EDIT: The above was probably not clear, so to rephrase:

  1. I wonder if the newly announced Open API is syntactically the Bloomberg SDK API (or how they call it?) which has been available for years already
  2. assuming there are restrictions on using Open API on any machine (comparing to using SDK from a machine with Bloomberg Terminal installed) - I wonder if those restrictions are specified in detail in some official Bloomberg doc.

I can myself guess on both questions, but I thought I'd rather ask :)

share|improve this question
1  
as Rahul pointed out - the API is now freely available (And all the data vendors should follow suit) - they sell the data. The real question is why did it take so long. This allows more small 3rd parties to work with it and create useful products with it. – Tim Feb 1 '12 at 20:44
Yup. I agree. Perhaps the question wasn't clear enough, I added a clarification - thanks. – andreister Feb 2 '12 at 9:31
There is an email address at the bottom of one of those linked pages. You should email them about it. – Tim Feb 2 '12 at 16:02
1  
Tim, I am sure about the fact that they will not open up all their data to developers. I work in the market data industry, so I can tell you that for sure. – user1188140 Feb 3 '12 at 17:47
1  
Real-time data isn't free, not even for testing at present(they mentioned they may set up a server for testing). You can use data only if you have a current subscription. – DumbCoder Mar 3 '12 at 22:56
show 1 more comment

4 Answers

up vote 5 down vote accepted

The API's will provide full access to LIVE data, and developers can thus provide applications and use the API free of charge. Consumers will pay for any data received from the apps provided by third party developers, and so BB will grow their audience and revenue in that way.

share|improve this answer
1  
AFAI can tell the Bloomberg API with SessionOptions DAPI must run on the BBG terminal, but SAPI (server mode) must talk to some ServerApi.exe, which I guess is a paid component. In DAPI mode the data must not leave the terminal, and if they find out it has, they'll prosecute you and disconnect your terminal. It looks like the way to go would be Reuters, if you have it available. (no relevant disclosures) – Sentinel Sep 5 '12 at 11:21

Since the data is not free, you can use this Bloomberg API Emulator (disclaimer: it's my project) to learn how to send requests and make subscriptions. This emulator looks and acts just like the real Bloomberg API, although it doesn't return real data. In my time developing applications that use the Bloomberg API, I rarely care about the actual data that I'm handling; I care about how to retrieve data.

If you want to learn how to use the Bloomberg API give it a try. If you want to test out your code without an account, use this. A Bloomberg account costs about $2,000 a month, so you can save a lot with this project.

The emulator now supports Java in addition to C#.

Java:

  • Intraday Tick Requests
  • Intraday Bar Requests
  • more coming soon

C#:

  • Intraday Tick Requests
  • Intraday Bar Requests
  • Reference Data Requests
  • Historical Data Requests
  • Market Data Subscriptions
share|improve this answer
1  
not exactly answer to the question but very useful tip indeed. thanks! – mantrid Feb 1 at 2:14

This API has been available for a long time and enables to get access to market data (including live) if you are running a Bloomberg Terminal or have access to a Bloomberg Server, which is chargeable.

I think the only difference is that the API can now be used as a dependency in an open source project for example, without any copyrights issues, which was not the case before.

share|improve this answer

I don't think so. The API's will provide access to delayed quotes, there is no way that real time data or tick data, will be provided for free.

share|improve this answer
Thanks. Are the restrictions specified in some official Bloomberg doc somewhere, or it's your gut feeling? I couldn't any sound info on that on their website! – andreister Feb 2 '12 at 9:14
1  
Having experience in this area for 10 years I can say for certainty that a data vendor WILL NOT provide free access to the data. They MAY provide a testbed/test server or some other method of allowing testing. – Tim Feb 2 '12 at 16:01
You can get real time data and quotes if you have them on the Bloomberg terminal. – ytoledano Oct 20 '12 at 18:32
@andreister: I agree with you, it would be good to have a clear document from bloomberg telling you what data you have access and what are the restrictions. – jules Nov 28 '12 at 9:21

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.