1. Create Topics
Set up content sources and filtering rules
Welcome to Crowdynews! This guide will help you get started with creating your first topic, managing content, and embedding widgets on your website.
Crowdynews follows a simple three-step workflow:
1. Create Topics
Set up content sources and filtering rules
2. Manage Queues
Curate and organize your aggregated content
3. Create Widgets
Build embeddable components for your website
Access the Dashboard
Log into your Crowdynews account: https://app.crowdynews.com

Create a New Topic
Navigate to Topics menu and click the “Create New” button. Give your topic a name and an optional description.

Configure Content Sources (Optional)
Add your content sources by selecting from:

Save Your Topic
Review your configuration and save the topic. Crowdynews will start aggregating content immediately, but it can take up to 5 minutes to start showing up in your queue. You can always edit your topic later to add/remove sources and filters.
Once your topic is created, you can manage the aggregated content in the queue:
Access the Queue
Navigate to your topic by clicking on the topic name in the topics list and click “To Queue” to see all aggregated content.

Manual Curation (Optional)
For each feed item, you can:


Navigate to Widgets
Go to the Widgets section from the main menu.

Create New Widget
Click “Create New”, give your widget a name and choose your widget type:

Attach Topics
Click on the “Topics” tab and select one or more topics to include in your widget. Content will be aggregated from all selected topics. You can select multiple topics to create a widget that shows content from multiple topics.

Get Your Embed Code
Save the widget and open it by clicking on the widget name in the widgets list. Copy the generated JavaScript snippet and paste it into your website’s HTML.

Add the widget to any HTML page:
<!-- Basic embed example --><div data-crowdynews-widget='YOUR_WIDGET_ID'> <script src='//widget.crowdynews.com/YOUR_WIDGET_ID.js' async='true' ></script></div>For custom integrations, you can access your topic data directly via JSON API:
Get API URL
Go to a specific topic by clicking on the topic name in the topics list and copy the API URL.

Make API Calls
fetch('https://q.crowdynews.com/v1/content/YOUR_PROJECT_ID?q=YOUR_TOPIC_ID') .then(response => response.json()) .then(data => { // Use your aggregated content console.log(data); });Deep Dive into Topics
Learn advanced topic configuration and filtering strategies.
Master Queue Management
Discover advanced curation techniques and workflow optimization.
Widget Customization
Explore widget styling options and advanced embedding techniques.
API Integration
Build custom integrations using the Crowdynews REST API.
Having trouble? Check out our detailed user guides or API documentation for more comprehensive information.