Sending data to a web page

I have a website that has an API that accepts data. I can send the data using a url to my API, problem is, it opens a webpage and displays the results of passing that data.

I want to be able to pass data to my API, without having a window open. Is this possible?

Thanks!

check out

which you use will depend on what version you’re using

url connection is the newest but has a couple known bugs
and it support http/1.1

http socket and secure socket and only support http/1.0 which can be an issue

Thanks Norman!