Freebase get all information from about 10 ids using php

59 Views Asked by At

Maybe its a pretty simple question but i didn't find a answer in the web. I'am using the freebase v1 search php api. Now i want to get more than 1 result per request. I want to have all information about 10 ids in a json file.

Is it possible?

1

There are 1 best solutions below

3
On

Looking at your query you provided, simply change the limit parameter to what you want. (10 in your question)

https://www.googleapis.com/freebase/v1/search?limit=10&query=Barack%20Obama&inde‌​nt=true&output=(all)&lang=e

That will get you the results you want.