Im using get request to get data from a site.
captured reqeuest details :
Query String Parameters
s: vrnf8
following is my code . But i get 404 not found status code.
import requests
url = "https://www.fleetmon.com/search/?s=vrnf8"
pload = {"s":"vrnf8"}
resp = requests.get(url, params=pload)
print(resp.text)
print(resp.status_code)
please help me with this !
request capture file : https://filebin.net/ilx668e5yrdmbu7p
response must be this :
[[{"lastreport_class": "position-age-live", "course": 213, "callsign": "VRNF8", "lastreport_verbose": "2020-07-17 12:28 UTC", "speed": 15.6, "destination": "SGSIN PEBGA", "vessel_url": "/vessels/seaspan-amazon_9630391_8896228/", "imo": "9630391", "location": "South Kuroshio, JP", "latitude": 28.732660, "vesselid": "8896228", "mmsi": "477390400", "lastreport_timestamp": 1594985298, "lastreport_short": "21 min", "name_clean": "SEASPAN AMAZON", "vessel_type": "Container ship", "master_image_id": 2278121, "flag_id": "HK", "icon": "cargo", "is_moving": true, "name": "SEASPAN AMAZON", "longitude": 28.732660, "length": "337", "flag_name": "Hong Kong SAR of China"}], 1, [], 0]

https://www.fleetmon.com/search/?s=vrnf8is not working