so I have been using requests in python to make an api call and currently use it in this way:
import requests
data = {"tag":"hello","value":"ayush"}
r = requests.post('MY URl', data)
and now I want to implement the same kind of post api call in swift,(in the shortest and easiest way possible)so can you please help