POST
/
call
/
read
Call Read
curl --request POST \
  --url https://trace.wandb.ai/call/read \
  --header 'Authorization: Basic <encoded-value>' \
  --header 'Content-Type: application/json' \
  --data '{
  "project_id": "<string>",
  "id": "<string>",
  "include_costs": true,
  "include_storage_size": true,
  "include_total_storage_size": true
}'
{
  "call": {
    "id": "<string>",
    "project_id": "<string>",
    "op_name": "<string>",
    "display_name": "<string>",
    "trace_id": "<string>",
    "parent_id": "<string>",
    "thread_id": "<string>",
    "turn_id": "<string>",
    "started_at": "2023-11-07T05:31:56Z",
    "attributes": {},
    "inputs": {},
    "ended_at": "2023-11-07T05:31:56Z",
    "exception": "<string>",
    "output": "<any>",
    "summary": {},
    "wb_user_id": "<string>",
    "wb_run_id": "<string>",
    "wb_run_step": 123,
    "deleted_at": "2023-11-07T05:31:56Z",
    "storage_size_bytes": 123,
    "total_storage_size_bytes": 123
  }
}

Authorizations

Authorization
string
header
required

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

Body

application/json
project_id
string
required
id
string
required
include_costs
boolean | null
default:false
include_storage_size
boolean | null
default:false
include_total_storage_size
boolean | null
default:false

Response

Successful Response

call
object | null
required