Roozna Searchbar FAQ

Find answers to commonly asked questions about the Roozna Searchbar component, its features, and integration process.

General Questions

What is the Roozna Searchbar?

The Roozna Searchbar is a powerful React component that allows you to integrate Roozna's extensive business search capabilities directly into your application. It provides instant access to comprehensive company information with a user-friendly interface.

What kind of applications can benefit from the Roozna Searchbar?

The Roozna Searchbar is versatile and can enhance various applications, including:

  • Business directories
  • Sales intelligence tools
  • Market research platforms
  • CRM systems
  • Lead generation tools
  • Competitive analysis software
Is the Roozna Searchbar compatible with my tech stack?

The Roozna Searchbar is a React component, making it compatible with any React-based application. It can be easily integrated into projects using popular frameworks like Next.js, Gatsby, or Create React App.

Installation and Setup

How do I install the Roozna Searchbar?

You can install the Roozna Searchbar using npm or yarn:

npm install @roozna/react-search
Do I need an API key to use the Roozna Searchbar?

Yes, you need a Roozna API key to use the Searchbar. You can obtain an API key by signing up for a Roozna account on our website.

How do I implement the Roozna Searchbar in my React application?

Here's a basic example of how to implement the Roozna Searchbar:

import React from 'react';
import { Searchbar } from '@roozna/react-search';

function App() {
  const handleSelect = (company) => {
    console.log('Selected company:', company);
  };

  return (
    <Searchbar 
      apiKey="your_api_key_here" 
      onSelect={handleSelect}
    />
  );
}

export default App;

Customization and Features

Can I customize the appearance of the Roozna Searchbar?

Yes, the Roozna Searchbar is highly customizable. You can adjust its size, colors, and styles using props like size, mainColor, and styles. For example:

<Searchbar
  apiKey="your_api_key_here"
  size="lg"
  mainColor="#4A90E2"
  styles={{
    input: { borderRadius: '8px' },
    dropdown: { boxShadow: '0 4px 6px rgba(0, 0, 0, 0.1)' },
  }}
/>
Does the Roozna Searchbar support dark mode?

Yes, the Roozna Searchbar supports both light and dark themes. You can set the theme using the theme prop, or it will automatically adjust based on the user's system preferences.

Can I filter or sort the search results?

The Roozna Searchbar provides search results based on relevance. While you can't directly filter or sort the results within the component, you can implement custom filtering or sorting logic in your application using the data returned by the Searchbar.

Data and Privacy

How up-to-date is the company information provided by Roozna?

Roozna maintains a constantly updated database of company information. While we strive for the highest accuracy, we recommend verifying critical information directly with the companies for the most current data.

Is the data transferred securely when using the Roozna Searchbar?

Yes, all data transferred between your application and Roozna's servers is encrypted using HTTPS protocols, ensuring the security of the information.

Does Roozna store any user data from searches performed with the Searchbar?

Roozna does not store individual user search queries. We only collect anonymous usage statistics to improve our service and API performance.

Troubleshooting

What should I do if the Searchbar isn't displaying any results?

If you're not seeing any results, check the following:

  • Ensure you're using a valid API key
  • Check your internet connection
  • Verify that you're not hitting any rate limits
  • Check the browser console for any error messages

If the issue persists, please contact our support team.

How can I report a bug or request a feature?

You can report bugs or request features by opening an issue on our GitHub repository or by contacting our support team directly through our website.

Pricing and Support

Is there a free tier for using the Roozna Searchbar?

Yes, we offer a free tier with limited API calls per month. For more extensive usage, we have various paid plans available. Check our pricing page for more details.

Do you offer technical support for integrating the Roozna Searchbar?

Yes, we provide technical support for all our customers. Free tier users can access our documentation and community forums, while paid plan subscribers receive priority email and chat support.

If you have any questions that aren't answered here, please don't hesitate to contact our support team or visit our comprehensive documentation for more detailed information.

Was this page helpful?