Questions tagged [yql]

The Yahoo! Query Language was an expressive SQL-like language that lets you query, filter, and join data across Web services.

As of Thursday, January 3, 2019, the YQL service is retired.

Historical information.

Yahoo! and other websites across the Internet made much of their structured data available to developers, primarily through Web services. To access and query these services, developers traditionally endured the pain of locating the right URLs and documentation to access and query each Web service.

With YQL, developers could access and shape data across the Internet through one simple language, eliminating the need to learn how to call different APIs.

815 questions
4
votes
1 answer

Accessing New messages from Yahoo Mail using YQL

I am currently writing a JAVA application in which I need to access the following information from users Yahoo email messages (to display back to them). YQL looked like a 'quick easy way' to do this, however it's proving to be more difficult. All…
whomba
  • 387
  • 5
  • 13
4
votes
2 answers

How to use YQL to retrieve web results?

I am having difficulty setting up a simple html file using javascript to display the results of YQL Query. I understand how to setup the select statement (example: select title,abstract,url from search.web where query="pizza") in the YQL Console.…
chris
  • 20,791
  • 29
  • 77
  • 90
4
votes
4 answers

YQL getting stock quotes country wise

I have been searching for this for last few days. I have achieved fetching the basic things through YQL, like their stocks, prices and all. Like this : Select Name,Symbol,LastTradePriceOnly,LastTradeDate, LastTradeTime, Change, …
Akash Saikia
  • 452
  • 6
  • 19
3
votes
1 answer

Using yql and php to scrape content

been fooling around with YQL trying to understand it a little better. I've managed to pull the info I want from an external site and get a results node in the YQL console but have thus been unsuccessful in displaying the results on my local…
Phrosty30
  • 127
  • 2
  • 13
3
votes
1 answer

How to combine results from two rather different YQL SELECTs (not a subselect)?

I have the following two YQL queries, each of which work fine on their own, but I'm pretty sure there's a way I haven't been able to find to fetch them both in a single more complicated query: SELECT * FROM xml WHERE…
hippietrail
  • 15,848
  • 18
  • 99
  • 158
3
votes
7 answers

What are the pros and cons of various ways of analyzing websites?

I'd like to write some code which looks at a website and its assets and creates some stats and a report. Assets would include images. I'd like to be able to trace links, or at least try to identify menus on the page. I'd also like to take a guess at…
Nosredna
  • 83,000
  • 15
  • 95
  • 122
3
votes
2 answers

Is it possible to get an intersection or a diff of two result sets in YQL?

I need to build a Twitter module entirely on the client side. I intended to use the Twitter API for the data and YQL to get across Same Origin Policy, and also for its higher rate limiting. I have used this combination before with success. One thing…
alex
  • 479,566
  • 201
  • 878
  • 984
3
votes
1 answer

Trouble with Yahoo OAuth Authorization with Google / Facebook OpenID

Im having a bit of trouble figuring out how to get an OAuth access token for a Yahoo user who has created an account with Google or Facebook Sign-in. I've followed the OAuth flow described in the documentation, however this seems to only apply to…
nickL
  • 31
  • 1
  • 3
3
votes
2 answers

Why `search.web` YQL table doesn't work anymore?

When I'm using search.web YQL table, I always get the error: No definition found for Table search.web in my YQL statements. Even when using SELECT url FROM search.web(0,10) WHERE query="stackoverflow" for example. So I am assuming Yahoo…
rafleo
  • 580
  • 8
  • 28
3
votes
4 answers

YQL Options expiration

I'm migrating some Yahoo Finance CSV/screen-scraping interfaces to use YQL, and struggling with the yahoo.finance.options table. If I query for all options for a given symbol, I don't find the expiration dates associated with the options. If I…
csingley
  • 31
  • 1
  • 3
3
votes
1 answer

Vespa search query (on array) gives hits even after removing the element from array

I am querying vespa to check if a particular userId is present in an array of userIds. http://localhost:8080/search/?yql=select * from sources doc where userIds contains 'user1'; Search Definition: search doc { document doc { field…
3
votes
1 answer

Google Maps geocoder for venues

I'm searching for a way to geocode venues with google maps. The Geocoder API only provides the ability to use addresses for geocoding. But what if don't know the address and only the city and the name of the restaurant? Or I want to retrieve results…
23tux
  • 14,104
  • 15
  • 88
  • 187
3
votes
1 answer

Yahoo Finance API

How to fetch the complete list of Yahoo Finance Stock symbol using YQL ??? not trying to fetch a single stock quote. I am trying to find the whole complete list of available stock symbol. E.g. all Stock Symbol from NYSE, NASDAQ.
calculus1985
  • 199
  • 1
  • 4
3
votes
1 answer

How do I combine multiple rest queries using YQL?

For example I would like to combine multiple queries rest queries together. Right now I do the following code with different URLs one at a time. I think it would be faster to ultimately make one request for 10 links in my case. Any help is…
Xavier
  • 8,828
  • 13
  • 64
  • 98
3
votes
0 answers

YQL getting stock quotes with new pm.finance table

This old URL worked perfectly…
icm63
  • 59
  • 3