Skip to main content
In the Weave UI, you can export your data in multiple formats. It also shows the Python and cURL code that you can use to export the rows programatically. To export Calls:
  1. Navigate to wandb.ai and select your project.
  2. In the Weave project sidebar, click Traces.
  3. Select multiple Calls that you want to export by checking the row.
  4. In the Traces table toolbar, click the export/download button.
  5. In the Export modal, choose Selected rows or All rows. Click Export.
Traces page showing selected Calls ready for export in the Export modal.

Fetch calls programmatically

To fetch calls using the Python API, you can use the client.get_calls method:
import weave

# Initialize the client
client = weave.init("your-project-name")

# Fetch calls
calls = client.get_calls(filter=...)
For complete details on call properties and fields, see the Call schema reference.