Skip to main content
GET
/
metadata
Get log metadata
curl --request GET \
  --url https://logging.monolisk.co/metadata \
  --header 'Authorization: Bearer <token>'
{
  "jobId": "job-123",
  "totalChunks": 3,
  "originalMeta": {
    "jobType": "build",
    "gameId": "game-456",
    "placeId": 789,
    "placeName": "Main Place",
    "startTime": "2025-01-01T00:00:00Z",
    "runtime": 5000
  }
}

Authorizations

Authorization
string
header
required

Authorization header with Bearer token

Query Parameters

jobId
string
required

The job ID to retrieve metadata for

Example:

"job-123"

Response

Log metadata

jobId
string
required

Unique job identifier

Example:

"job-123"

totalChunks
integer
required

Total number of chunks for this job

Required range: x >= 1
Example:

3

originalMeta
object
required