Help Scout Developers

Help Scout Developers

Docs API
  • Overview
    • Overview
    • Status Codes
  • Restricted Docs
    • Overview
    • Examples
      • Show login screen when signing in
      • Single Sign-On (SSO) experience
  • Endpoints
    • Articles
      • List Articles
      • Search Articles
      • List Related Articles
      • List Revisions
      • Get Article
      • Get Revision
      • Create Article
      • Update Article
      • Upload Article
      • Update View Count
      • Delete Article
      • Save Article Draft
      • Delete Article Draft
    • Assets
      • Create Article Assets
      • Create Settings Assets
    • Categories
      • List Categories
      • Get Category
      • Create Category
      • Update Category
      • Update Category Order
      • Delete Category
    • Collections
      • List Collections
      • Get Collection
      • Create Collection
      • Update Collection
      • Delete Collection
    • Redirects
      • List Redirects
      • Get Redirect
      • Find Redirect
      • Create Redirect
      • Update Redirect
      • Delete Redirect
    • Sites
      • List Sites
      • Get Site
      • Create Site
      • Update Site
      • Delete Site
      • Get Site Restrictions
      • Update Site Restrictions
  • Objects
    • Article
    • ArticleRef
    • ArticleRevision
    • ArticleRevisionRef
    • ArticleSearch
    • CallbackConfiguration
    • Category
    • Collection
    • Person
    • Redirect
    • Site
    • SiteRestriction

List Related Articles

  • REST Method: GET
  • URL: https://docsapi.helpscout.net/v1/articles/{id}/related

Use this endpoint to return a list of articles related to the specified article id. Full articles are not returned. Instead, an ArticleRef is returned, which is an abbreviated version of the Article suitable for displaying in a list.

Request

Name Type Required Default Options Notes
page Int No 1    
status String No all
  • all
  • published
  • notpublished
 
sort String No order
  • number
  • status
  • name
  • popularity
  • createdAt
  • updatedAt
 
order String No desc
  • asc: ascending order
  • desc: descending order
 

To request subsequent pages:

  • https://docsapi.helpscout.net/v1/articles/{id}/related?page=2

Response

Response Name Type Notes
Header Status Int 200
Body page Int Current page that was passed in on the request
  pages Int Total number of pages available
  count Int Total number of objects available
  items Collection Collection of ArticleRef objects.
{
    "articles": {
        "page": 1,
        "pages": 1,
        "count": 4,
        "items": [
            {
                "id": "5215163545667acd25394b5c",
                "number": 121,
                "collectionId": "5214c77c45667acd25394b51",
                "status": "published",
                "hasDraft": false,
                "name": "My Article",
                "publicUrl": "https://docs.helpscout.net/article/100-my-article",
                "popularity": 4.3,
                "viewCount": 237,
                "createdBy": 73423,
                "updatedBy": null,
                "createdAt": "2013-08-21T19:34:13Z",
                "updatedAt": null,
                "lastPublishedAt": "2013-08-21T19:34:13Z"
            },
            {... article ref object ...},
            {... article ref object ...},
            {... article ref object ...}
        ]
    }
}

Contents

    ↑Back to top

    • Customer Login
    • Visit Help Scout
    • Status
    © Help Scout 2025