Uncover how specific customers search for your products
Ensure your SEO strategy aligns with the way people search for products in specific countries and languages. Our tool helps you discover the most effective search terms for different markets, ensuring you rank high on search engines and reach your ideal audience.
With a global network of users from diverse cultures and languages, you gain valuable insights into how different audiences search for your products. Our advanced targeting features allow you to tailor your SEO strategy to reflect cultural nuances, improving your reach and visibility across various regions.
Our API and python package allows you to quickly and easily evaluate large amounts of images whether it being for ad-hoc checks or integrated directly in the training pipeline.
from rapidata import RapidataClient, LanguageFilter
client = RapidataClient()
order = client.order.create_free_text_order(
name="Search Term Example AR",
instruction="How would you search for this product online? Which keywords would you use?",
datapoints=["https://assets.rapidata.ai/18ea0db6-a8af-4845-980d-cd95832c1653.png"],
responses_per_datapoint=15,
filters=[LanguageFilter(["ar"])],
).run()
order.display_progress_bar()
results = order.get_results()
print(results)