From this thread, an example like this would be good on the net_http_request table:
The trick is to cast the response into JSONB . For example:
> select response_body::jsonb ->> 'number' as num_people_in_space from net_http_request where url = 'http://api.open-notify.org/astros.json'
+---------------------+
| num_people_in_space |
+---------------------+
| 10 |
+---------------------+
From this thread, an example like this would be good on the net_http_request table: