Hi ,
I noticed an issue with the /ip endpoint. According to the description, it should return the origin IP. However, the current response includes the port number as well. For example:
{
"origin": "23.XX.XXX.9:47782"
}
Expected behavior:
The IP address should not include the port. It should return just the IP, like:
{
"origin": "23.XX.XXX.9"
}
Including the port may lead to inconsistencies or issues for systems expecting a pure IP address.
Steps to Reproduce:
Make a request to /ip
Observe that the returned origin field includes the port number
Thanks!