API Configuration

You can manage your Walmart connector programmatically using the Weld REST API. This page covers the key operations specific to Walmart.

Authentication

All API requests require an API key passed via the x-api-key header. You can create API keys in Settings → API Keys inside the Weld app.

curl https://connect.weld.app/connections \
  --header 'x-api-key: YOUR_API_KEY'

Integration ID

When creating connections or syncs for Walmart, use the following integration ID:

ParameterValue
integration_idwalmart

Create a Connection

To connect Walmart via the API, create a connection bridge session:

curl https://connect.weld.app/connection_bridges \
  --request POST \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: YOUR_API_KEY' \
  --data '{
  "integration_id": "walmart",
  "label": "walmart-production",
  "redirect_uri": "https://yourapp.com/callback"
}'

Was this page helpful?