# List article

You can return a list of all of your articles.

GET /api/articles/

# Request

  • CURL
  • JavaScript
  • PHP
  • Python
curl -X GET "https://<your_app_subdomain>.user.com/api/articles/"

# Response

{
  "count": 3,
  "next": null,
  "page_links": [
    ["https://<your_app_subdomain>.user.com/api/articles/", 1, true, false]
  ],
  "previous": null,
  "results": [
    {
      "author": {
        "avatar": "https://<your_app_subdomain>.user.com/static/img/agent.svg",
        "id": 1,
        "name": "developer developer"
      },
      "categories": [],
      "content": "test",
      "created_at": "2020-12-04T15:04:09.951199Z",
      "id": 3,
      "intro_text": "test",
      "language": "en",
      "rating": null,
      "slug": "test-2",
      "tags": [],
      "title": "Test",
      "translations": [
        {
          "id": 3,
          "is_default": true,
          "label": "English",
          "language": "en",
          "status": 0
        }
      ],
      "updated_at": "2020-12-04T15:04:09.997904Z",
      "url": "/knowledge-base/test-2/",
      "views": 0
    },
    {
      "author": {
        "avatar": "https://<your_app_subdomain>.user.com/static/img/agent.svg",
        "id": 1,
        "name": "developer developer"
      },
      "categories": [],
      "content": "test",
      "created_at": "2020-12-04T13:42:35.803250Z",
      "id": 2,
      "intro_text": "test",
      "language": "en",
      "rating": "5.00",
      "slug": "test-1",
      "tags": [],
      "title": "Test",
      "translations": [
        {
          "id": 2,
          "is_default": true,
          "label": "English",
          "language": "en",
          "status": 0
        }
      ],
      "updated_at": "2020-12-04T13:42:35.827713Z",
      "url": "/knowledge-base/test-1/",
      "views": 1
    },
    {
      "author": {
        "avatar": "https://<your_app_subdomain>.user.com/static/img/agent.svg",
        "id": 1,
        "name": "developer developer"
      },
      "categories": [],
      "content": "test",
      "created_at": "2020-12-04T13:41:46.540889Z",
      "id": 1,
      "intro_text": "test",
      "language": "en",
      "rating": "4.00",
      "slug": "test",
      "tags": [],
      "title": "Test",
      "translations": [
        {
          "id": 1,
          "is_default": true,
          "label": "English",
          "language": "en",
          "status": 0
        }
      ],
      "updated_at": "2020-12-04T13:41:46.620162Z",
      "url": "/knowledge-base/test/",
      "views": 1
    }
  ]
}