Sometimes there is too much information in our system to put into a single file of reasonable size. Therefore we limit file downloads to 10,000 rows. In order to retrieve the rest of the rows, you will have to request the second "page" of results. The first row of each file will contain paging information: RESULT_COUNT: 6342 , PAGE_SIZE: 10000 , CURRENT_PAGE: 1, TOTAL_PAGES: 1 , API_CALL_CREDITS: 1
If the TOTAL_PAGES field in your file is greater than 1 and you want to see the other pages, append a page_number parameter to the URL:
https://api.intrinio.com/indices.csv?type=economic&page_number=1https://api.intrinio.com/indices.csv?type=economic&page_number=2https://api.intrinio.com/indices.csv?type=economic&page_number=3
To exclude the paging information from your file, include a hide_paging parameter in the URL:
https://api.intrinio.com/indices.csv?type=economic&page_number=1&hide_paging=true
URLs must be formatted correctly in order for file downloads to be processed successfully. Here are examples of correct URLs:
https://api.intrinio.com/indices.csvhttps://api.intrinio.com/indices.csv?type=economichttps://api.intrinio.com/indices.csv?type=economic&query=GDPhttps://api.intrinio.com/data_point.csv?identifier=AAPL&item=marketcap,beta
Here are examples of incorrect URLs:
https://api.intrinio.com/indices.csv&type=economichttps://api.intrinio.com/indices.csv?type=economic?query=GDPhttps://api.intrinio.com/data_point.csv?identifier=AAPL&item=marketcap/beta
Here is a key to the different parts of a URL:
https://api.intrinio.com | /data_point.csv | ? | identifier | = | AAPL | & | item | = | marketcap,beta |
1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |