Search Endpoint Migration
We are migrating our search endpoint from/v1/deepsearch to /v1/search to better reflect its capabilities and simplify our API surface.
What’s Changing
| Current Endpoint | New Endpoint | Deprecation Date |
|---|---|---|
POST /v1/deepsearch | POST /v1/search | April 30th, 2025 |
Timeline
- Now: Both
/v1/deepsearchand/v1/searchare fully operational and identical - Until April 30th, 2025: Both endpoints function identically
- After April 30th, 2025: The
/v1/deepsearchendpoint will be removed
How to Update
Simply replacedeepsearch with search in your API calls:
Before:
SDK Updates
Our official SDKs handle this automatically. Ensure you’re using the latest versions:- Python SDK:
pip install --upgrade valyu - TypeScript SDK:
npm update valyu-js - Rust SDK:
cargo update -p valyu
The request and response formats remain unchanged. This is purely an endpoint rename.
API Domain Change
We have migrated our API endpoint fromapi.valyu.network to api.valyu.ai.
What This Means
- New API endpoint: All API requests should now be directed to
https://api.valyu.ai - Backward compatibility: The old endpoint
https://api.valyu.networkwill continue to work and remain identical toapi.valyu.aiuntil January 1st, 2026 - Action required: Please update your integrations to use the new domain at your earliest convenience
Timeline
- Now:
api.valyu.aiis fully operational - Until January 1st, 2026: Both
api.valyu.networkandapi.valyu.aiwill function identically - After January 1st, 2026: The
api.valyu.networkendpoint will be deprecated
How to Update
Simply replaceapi.valyu.network with api.valyu.ai in your API calls:
Before:
SDK Updates
If you’re using our official SDKs, make sure you’re using the latest version which already points toapi.valyu.ai:

