# Response

The response will be a json object or the html code of the page depending on the option you selected with the &format= parameter (default is html).

Note: A response of 404 status code means that either the crawled page hasn't reached the Storage area or the sent rid or url is wrong.

# Format HTML

This will come when you call the API with the &format=html.

Headers:
  "Content-Type" => "text/plain"
  "Content-Encoding" => "gzip"
  "stored_at" => "2020-10-01T18:24:23+03:00"
  "original_status" => 200
  "pc_status" => 200
  "rid" => RID
  "url" => URL

Body:
  The HTML of the page

# Format JSON

This will come when you call the API with the &format=json.

Headers:
  "Content-Type" => "application/json"
Body:
{
  stored_at: "2020-10-01T18:24:23+03:00",
  pc_status: 200,
  original_status: 200,
  rid: RID,
  url: URL,
  body: "The HTML of the page"
}