Sign Up

Port

GET/port

Get a list of all currently active ports

Response Body

application/json

curl -X GET "https://example.com/port"
{  "ports": [    0  ]}
GET/port/{port}/in-use

Check if a specific port is currently in use

Path Parameters

port*integer

Port number (3000-9999)

Response Body

application/json

application/json

curl -X GET "https://example.com/port/0/in-use"
{  "isInUse": true}