Skip to main content
POST
/
ping
Post Player Pings
curl --request POST \
  --url https://api.example.com/ping \
  --header 'Content-Type: application/json' \
  --data '
[
  {
    "lobbyId": "<string>",
    "ping": 123,
    "uuid": "<string>"
  }
]
'
{
  "ping": [
    {
      "lobbyId": "<string>",
      "ping": 123,
      "uuid": "<string>"
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.seraph.si/llms.txt

Use this file to discover all available pages before exploring further.

Body

application/json

Array of player ping data to post

lobbyId
string
ping
integer
uuid
string

Response

Successfully posted ping data

ping
object[]