LogoLogo
  • What Is Junkipedia?
    • Introduction
    • What You Can Do
    • What You Can't Do
    • Tip-Issue-Narrative Pipeline
  • Getting Started
    • Managing Your Team
      • Inviting New Users
      • Managing Your Organization
    • Setting Up Tiplines
      • Creating A New Tipline
      • Configuring Tipline Properties
        • Hosting A Web Tipline
        • Hosting An Email Tipline
        • Hosting An SMS Tipline
        • Hosting A Whatsapp Tipline
        • Hosting A Slack Tipline
        • Hosting An API Tipline
      • Embedding A Tipline Form
      • Sharing A Tipline Via QR Code
      • Enabling Inbound Tip Review
      • Disabling A Tipline
      • Adding Default Topics & Tags (wip)
      • Reviewing Tips
    • Reporting And Documenting Misinformation
      • Submitting Tips Within Junkipedia
      • Using Tiplines Outside Of Junkipedia
        • Submit A Tip via SMS
        • Submit A Tip via Email
        • Submit A Tip Via WhatsApp
        • Submit A Tip via Slack
        • Submit A Tip via Web Form
        • Submit Tips Via API
      • Editing An Issue
        • The "Edit Issue" Form
        • What To Include
        • Adding More Tips To An Issue
        • Editing Within The Issues List
          • Issue Title & Description
          • Adding Tags To An Issue
          • Linking Issues To Narratives
    • Reviewing Tracked Content
      • Searching For Issues
      • Filtering Issues
      • Creating Saved Search Alerts
    • Managing Narratives
      • Adding Issues To A Narrative
      • Describing A Narrative
      • Preparing A Response
      • Making A Narrative Public
    • Social Media Monitoring
      • Introducing The Junkipedia Monitoring System
      • Searching The Database
      • Following Public Lists
      • Building Your Own Lists
      • Edit an Existing List
      • Sharing your lists
      • Using Actor Sets
  • Reference Material
    • Glossary
    • API
      • Using Your API Key
      • Query String Parameters
        • Text Search Parameters
        • Engagement Filters
        • Pagination
        • Post Type And Platform
        • Time Filters
        • Language Code
        • Channel Properties
        • Exclude
        • Lists
    • Best Practices
      • Fact Checking
        • Verification Resources
        • How to Verify Online Information
      • How to Find Misinformation Online
      • social media post
      • Instagram via CrowdTangle
      • Protect Your Mental Well Being
    • User Account Admin
      • Update Your User Profile Details
      • Update Your Security Settings
Powered by GitBook
On this page
  1. Reference Material
  2. API
  3. Query String Parameters

Lists

PreviousExcludeNextBest Practices

Last updated 1 year ago

The following API entry points provide the ability to search for records based on that would pull them into the monitoring system using the lists query string parameter.

  • GET /posts

  • GET /posts/stats

With each of these endpoints, one or more comma separated list ID values may be specified.

For example, the following request will retrieve posts selected by list ID 1911 or list ID 4224:

GET /posts?lists=1911,4224

List Names Corresponding To List IDs

Since list ID values are just numeric codes, it is difficult to distinguish them without being able to refer to the names assigned to these lists. You can relate list names to list ID values either through the Junkipedia Web UI or by using API requests to view your lists.

  • Junkipedia Web UI – the Manage Lists option. When you select a specific list, its list ID value will appear as the numeric URL path segment showing in the address bar of your browser and its name will appear on the content of the page.

  • API Request To Retrieve All Lists - You can use to retrieve all of your lists in a JSON array. Each element of the array represents one of your lists including its name, ID, and various other properties.

  • API Request To Retrieve A Specific List - You can use to retrieve all properties for one specific list. The {id} is the list ID supplied as a path parameter.

monitoring lists
From the Monitoring tab, navigate to
the GET /lists request
the GET /lists/{id} request