1. Search Values

Search departments by name keywords


2. Ordering Values

Order departments by id or name

The API may also specify reverse orderings by prefixing the field name with '-', like so:

Multiple orderings may also be specified:


GET /api/v2/departments/
HTTP 200 OK
Allow: GET, HEAD, OPTIONS
Content-Type: application/json
Vary: Accept

{
    "count": 40,
    "next": "https://notaso.com/api/v2/departments/?limit=25&offset=25",
    "previous": null,
    "results": [
        {
            "id": 1,
            "name": "Administración de Empresas",
            "slug": "administracion-de-empresas",
            "url": "https://notaso.com/api/v2/departments/administracion-de-empresas/",
            "professors_count": 411
        },
        {
            "id": 2,
            "name": "Arquitectura",
            "slug": "arquitectura",
            "url": "https://notaso.com/api/v2/departments/arquitectura/",
            "professors_count": 58
        },
        {
            "id": 3,
            "name": "Arte",
            "slug": "arte",
            "url": "https://notaso.com/api/v2/departments/arte/",
            "professors_count": 73
        },
        {
            "id": 4,
            "name": "Biología",
            "slug": "biologia",
            "url": "https://notaso.com/api/v2/departments/biologia/",
            "professors_count": 525
        },
        {
            "id": 5,
            "name": "Biomédica",
            "slug": "biomedica",
            "url": "https://notaso.com/api/v2/departments/biomedica/",
            "professors_count": 26
        },
        {
            "id": 6,
            "name": "Ciencias Agrícolas",
            "slug": "ciencias-agricolas",
            "url": "https://notaso.com/api/v2/departments/ciencias-agricolas/",
            "professors_count": 129
        },
        {
            "id": 7,
            "name": "Ciencias Biológicas",
            "slug": "ciencias-biologicas",
            "url": "https://notaso.com/api/v2/departments/ciencias-biologicas/",
            "professors_count": 44
        },
        {
            "id": 8,
            "name": "Ciencias de Computadora",
            "slug": "ciencias-de-computadora",
            "url": "https://notaso.com/api/v2/departments/ciencias-de-computadora/",
            "professors_count": 104
        },
        {
            "id": 9,
            "name": "Ciencias Médicas",
            "slug": "ciencias-medicas",
            "url": "https://notaso.com/api/v2/departments/ciencias-medicas/",
            "professors_count": 3
        },
        {
            "id": 10,
            "name": "Ciencias Políticas",
            "slug": "ciencias-politicas",
            "url": "https://notaso.com/api/v2/departments/ciencias-politicas/",
            "professors_count": 29
        },
        {
            "id": 11,
            "name": "Ciencias Sociales",
            "slug": "ciencias-sociales",
            "url": "https://notaso.com/api/v2/departments/ciencias-sociales/",
            "professors_count": 298
        },
        {
            "id": 12,
            "name": "Ciencias y Tecnología",
            "slug": "ciencias-y-tecnologia",
            "url": "https://notaso.com/api/v2/departments/ciencias-y-tecnologia/",
            "professors_count": 45
        },
        {
            "id": 13,
            "name": "Comunicación",
            "slug": "comunicacion",
            "url": "https://notaso.com/api/v2/departments/comunicacion/",
            "professors_count": 70
        },
        {
            "id": 14,
            "name": "Economía",
            "slug": "economia",
            "url": "https://notaso.com/api/v2/departments/economia/",
            "professors_count": 42
        },
        {
            "id": 15,
            "name": "Educación",
            "slug": "educacion",
            "url": "https://notaso.com/api/v2/departments/educacion/",
            "professors_count": 75
        },
        {
            "id": 16,
            "name": "Educación Contínua",
            "slug": "educacion-continua",
            "url": "https://notaso.com/api/v2/departments/educacion-continua/",
            "professors_count": 3
        },
        {
            "id": 17,
            "name": "Educación Física",
            "slug": "educacion-fisica",
            "url": "https://notaso.com/api/v2/departments/educacion-fisica/",
            "professors_count": 103
        },
        {
            "id": 18,
            "name": "Enfermería",
            "slug": "enfermeria",
            "url": "https://notaso.com/api/v2/departments/enfermeria/",
            "professors_count": 89
        },
        {
            "id": 19,
            "name": "Español",
            "slug": "espanol",
            "url": "https://notaso.com/api/v2/departments/espanol/",
            "professors_count": 324
        },
        {
            "id": 20,
            "name": "Estudios Generales",
            "slug": "estudios-generales",
            "url": "https://notaso.com/api/v2/departments/estudios-generales/",
            "professors_count": 98
        },
        {
            "id": 21,
            "name": "Física",
            "slug": "fisica",
            "url": "https://notaso.com/api/v2/departments/fisica/",
            "professors_count": 180
        },
        {
            "id": 22,
            "name": "Frances",
            "slug": "frances",
            "url": "https://notaso.com/api/v2/departments/frances/",
            "professors_count": 14
        },
        {
            "id": 23,
            "name": "Geología",
            "slug": "geologia",
            "url": "https://notaso.com/api/v2/departments/geologia/",
            "professors_count": 25
        },
        {
            "id": 24,
            "name": "Horticultura",
            "slug": "horticultura",
            "url": "https://notaso.com/api/v2/departments/horticultura/",
            "professors_count": 0
        },
        {
            "id": 25,
            "name": "Humanidades",
            "slug": "humanidades",
            "url": "https://notaso.com/api/v2/departments/humanidades/",
            "professors_count": 313
        }
    ]
}