This viewset automatically provides `list`, `create`, `retrieve`,
`update` and `destroy` actions.

Additionally we also provide an extra `highlight` action.

GET /api/v1/snippets/?format=api
HTTP 200 OK
Allow: GET, POST, HEAD, OPTIONS
Content-Type: application/json
Vary: Accept

{
    "count": 2,
    "next": null,
    "previous": null,
    "results": [
        {
            "url": "http://demo.scanapi.dev/api/v1/snippets/318/?format=api",
            "id": 318,
            "highlight": "http://demo.scanapi.dev/api/v1/snippets/318/highlight/?format=api",
            "owner": "roberto.nunes",
            "title": "Calculator",
            "code": "def add(x, y):\\r\\n    return x + y\\r\\n\\r\\ndef subtract(x, y):\\r\\n    return x - y\\r\\n\\r\\ndef multiply(x, y):\\r\\n    return x * y\\r\\n\\r\\ndef divide(x, y):\\r\\n    return x / y",
            "linenos": true,
            "language": "python",
            "style": "emacs"
        },
        {
            "url": "http://demo.scanapi.dev/api/v1/snippets/319/?format=api",
            "id": 319,
            "highlight": "http://demo.scanapi.dev/api/v1/snippets/319/highlight/?format=api",
            "owner": "roberto.nunes",
            "title": "Calculator2",
            "code": "def add(x, y):\r\n    return x + y\r\n\r\ndef subtract(x, y):    \r\n    return x - y\r\n\r\ndef multiply(x, y):\r\n    return x * y\r\n\r\ndef divide(x, y):\r\n    return x / y",
            "linenos": true,
            "language": "python",
            "style": "monokai"
        }
    ]
}