Search | Stripe Documentation ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ !https://stripe.com/docs/search#search-query-language Date: December 7, 2023 Image: Search — Use the search APIs to look up and retrieve objects in your Stripe data. Using search is a faster alternative to paginating through all resources. Search Use the search APIs to look up and retrieve objects in your Stripe data. Using search is a faster alternative to paginating through all resources. stripe.com Stripe has it’s own query language for querying data. I’m just getting into using it and it seems pretty good so far. I needed to lookup the price for products. I was able to find prices for my product using the python api as shown below. ``` stripe.Price.search(query="active: 'true' and product: 'prod_P8SfwtxJ45cWE2'") ```