POST
/
table
/
query_stats_batch
Table Query Stats Batch
curl --request POST \
  --url https://trace.wandb.ai/table/query_stats_batch \
  --header 'Authorization: Basic <encoded-value>' \
  --header 'Content-Type: application/json' \
  --data '{
  "project_id": "my_entity/my_project",
  "digests": "aonareimsvtl13apimtalpa4435rpmgnaemrpgmarltarstaorsnte134avrims",
  "include_storage_size": true
}'
{
  "tables": [
    {
      "count": 123,
      "digest": "<string>",
      "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

The ID of the project

Examples:

"my_entity/my_project"

digests
string[] | null

The digests of the tables to query

Examples:

"aonareimsvtl13apimtalpa4435rpmgnaemrpgmarltarstaorsnte134avrims"

"smirva431etnsroatsratlrampgrmeangmpr5344aplatmipa31ltvsmiะตั€ะฐnoa"

include_storage_size
boolean | null
default:false

If true, the storage_size_bytes column is returned.

Response

Successful Response

tables
TableStatsRow ยท object[]
required