Real-World Code Search Recipes/Find deprecated API calls

Search for an old method across target languages.

Section: Refactor recipes

Find deprecated API calls

bash
bash
rg -t py -t js '\boldApi\(' .
Explanation

This helps estimate migration effort before opening a large refactor.

Learn the surrounding workflow

Compare similar commands or jump into common fixes when this command is part of a bigger troubleshooting path.

Related commands

Same sheet · prioritizing Refactor recipes
Find debug logging in source code
Locate `console.log` usage across a codebase.
OpenIn sheetbashsame section
Find a React hook across TSX files
Search only the frontend component surface.
OpenIn sheetbashsame section
Find `SELECT *` usage
Audit SQL anti-patterns in code or migrations.
OpenIn sheetbashsame section
Find hard-coded URLs
Search for HTTP(S) URLs in source and config.
OpenIn sheetbashsame section
Find OpenAPI operation IDs
Search specs for operation identifiers.
OpenIn sheetbash2 tag match
Search for AWS access key patterns
Look for common credential shapes.
OpenIn sheetbash1 tag match