0
I want to fetch transactions for an address from the following api:
https://blockchain.info/address/$btc_address?format=json
The thing is understanding the json returned from the api, I don't understand which of them are the transaction and the time when that transaction took place.
Can any one help?

Thanks for your reply, I assume the time there represents the transaction time, but what about the amount of transaction that took place on that time, how do I know that? I saw data under [prev_out] and other in [out], it is really confusing. – Criesto – 2014-08-26T10:44:15.560
Maybe studying the bitcoin wiki a little will help you, since the things that confuse you are pretty trivial once you get how it all works. In any case, each transaction can have many inputs ([inputs]), and many outputs ([out]). the transaction itself happens at the time specified, included at the block specified. And finally, each input is, essentially, a previous output. – angelitto – 2014-08-26T14:44:30.063