Socrata was acquired by Tyler Technologies in 2018 and is now the Data and Insights division of Tyler. The platform is still powered by the same software formerly known as Socrata but you will see references to Data & Insights going forward.

http_get

Function: http_get
  Make an HTTP Get request to a URL. The response is returned. If the server
  returns a non-200 response, times out, or returns a response larger than 1mb,
  an error is returned.
  This call is subject to a rate limit of 2 requests per second. The result will
  be cached.

Examples:


    json_pluck(
    http_get('https://some-service-returning/some-json.json'),
    '.some.value'
  )

  -- Result: "json value"



Signatures
text -> text