POST
/
report
curl --request POST \
  --url https://app.openpipe.ai/api/v1/report \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "requestedAt": 123,
  "receivedAt": 123,
  "reqPayload": "<any>",
  "respPayload": "<any>",
  "statusCode": 123,
  "errorMessage": "<string>",
  "tags": {}
}'
{
  "status": "ok"
}

Authorizations

Authorization
string
headerrequired

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
requestedAt
number

Unix timestamp in milliseconds

receivedAt
number

Unix timestamp in milliseconds

reqPayload
any

JSON-encoded request payload

respPayload
any

JSON-encoded response payload

statusCode
number

HTTP status code of response

errorMessage
string

User-friendly error message

tags
object

Extra tags to attach to the call for filtering. Eg { "userId": "123", "promptId": "populate-title" }

Response

200 - application/json
status
required
Available options:
ok