I tried to get all deals for a city in the US from the Factual monetize API by the help of the ruby driver
query = factual.monetize.filters("place_locality" => "San Francisco")
Is there a limit of 20 results? How is it possible to get more deals?
Have you tried adding
query.page(1, :per => 100)
as described in point 6 of https://github.com/Factual/factual-ruby-driver#more-read-examples?