AiiDA REST API

Available endpoints and responses

The HTTP response of the REST API consists in a JSON object, a header, and a status code. Possible status are:

  1. 200 for successful requests.

  2. 400 for bad requests. In this case, the JSON object contains only an error message describing the problem.

  3. 500 for a generic internal server error. The JSON object contains only a generic error message.

  4. 404 for invalid URL. Differently from the 400 status, it is returned when the REST API does not succeed in directing the request to a specific resource. This typically happens when the path does not match any of the supported format. No JSON is returned.

The header is a standard HTTP response header with the additional custom field X-Total-Counts and, only if paginated results are required, a non-empty Link field, as described in the Pagination section.

The JSON object mainly contains the list of the results returned by the API (in the data key). It also contains information on the request (keys method, url, url_root, path, query_string, and resource_type).

Computers

  1. Get a list of the Computers objects.

    REST URL:

    http://localhost:5000/api/v4/computers?limit=3&offset=2&orderby=id
    

    Description:

    returns the list of three Computer objects (limit=3) starting from the 3rd row (offset=2) of the database table and the list will be ordered by ascending values of id.

    Response:

    {
      "data": {
        "computers": [
          {
            "description": "Alpha Computer",
            "hostname": "alpha.aiida.net",
            "id": 3,
            "name": "Alpha",
            "scheduler_type": "slurm",
            "transport_type": "ssh",
            "uuid": "9b5c84bb-4575-4fbe-b18c-b23fc30ec55e"
          },
          {
            "description": "Beta Computer",
            "hostname": "beta.aiida.net",
            "id": 4,
            "name": "Beta",
            "scheduler_type": "slurm",
            "transport_type": "ssh",
            "uuid": "5d490d77-638d-4d4b-8288-722f930783c8"
          },
          {
            "description": "Gamma Computer",
            "hostname": "gamma.aiida.net",
            "id": 5,
            "name": "Gamma",
            "scheduler_type": "slurm",
            "transport_type": "ssh",
            "uuid": "7a0c3ff9-1caf-405c-8e89-2369cf91b634"
          }
        ]
      },
      "id": null,
      "method": "GET",
      "path": "/api/v4/computers",
      "query_string": "limit=3&offset=2&orderby=id",
      "resource_type": "computers",
      "url": "http://localhost:5000/api/v4/computers?limit=3&offset=2&orderby=id",
      "url_root": "http://localhost:5000/"
    }
    
  2. Get details of a single Computer object:

    REST URL:

    http://localhost:5000/api/v4/computers/5d490d77
    

    Description:

    returns the details of the Computer object uuid="5d490d77-638d...".

    Response:

    {
      "data": {
        "computers": [
          {
            "description": "Beta Computer",
            "hostname": "beta.aiida.net",
            "id": 4,
            "name": "Beta",
            "scheduler_type": "slurm",
            "transport_type": "ssh",
            "uuid": "5d490d77-638d-4d4b-8288-722f930783c8"
          }
        ]
      },
      "id": null,
      "method": "GET",
      "path": "/api/v4/computers/5d490d77",
      "query_string": "",
      "resource_type": "computers",
      "url": "http://localhost:5000/api/v4/computers/5d490d77",
      "url_root": "http://localhost:5000/"
    }
    

Nodes

  1. Get a list of Node objects.

    REST URL:

    http://localhost:5000/api/v4/nodes?limit=2&offset=8&orderby=-id
    

    Description:

    returns the list of two Node objects (limit=2) starting from 9th row (offset=8) of the database table and the list will be ordered by id in descending order.

    Response:

    {
      "data": {
        "nodes  ": [
          {
            "ctime": "Sun, 21 Jul 2019 11:45:52 GMT",
            "full_type": "data.dict.Dict.|",
            "id": 102618,
            "label": "",
            "mtime": "Sun, 21 Jul 2019 11:45:52 GMT",
            "node_type": "data.dict.Dict.",
            "process_type": null,
            "user_id": 4,
            "uuid": "a43596fe-3d95-4d9b-b34a-acabc21d7a1e"
          },
          {
            "ctime": "Sun, 21 Jul 2019 18:18:26 GMT",
            "full_type": "data.remote.RemoteData.|",
            "id": 102617,
            "label": "",
            "mtime": "Sun, 21 Jul 2019 18:18:26 GMT",
            "node_type": "data.remote.RemoteData.",
            "process_type": null,
            "user_id": 4,
            "uuid": "12f95e1c-69df-4a4b-9b06-8e69072e6108"
          }
        ]
      },
      "id": null,
      "method": "GET",
      "path": "/api/v4/nodes",
      "query_string": "limit=2&offset=8&orderby=-id",
      "resource_type": "nodes",
      "url": "http://localhost:5000/api/v4/nodes?limit=2&offset=8&orderby=-id",
      "url_root": "http://localhost:5000/"
    }
    

    Get list of all nodes with attribute called pbc1:

    REST URL:

    http://localhost:5000/api/v4/nodes?attributes=true&attributes_filter=pbc1
    

    Description:

    returns the list of Node objects. Every node object contains value of attribute called pbc1 if present otherwise null.

    Response:

    {
      "data": {
        "nodes  ": [
          {
            "attributes.pbc1": true,
            "ctime": "Sun, 21 Jul 2019 15:36:30 GMT",
            "full_type": "data.structure.StructureData.|",
            "id": 51310,
            "label": "",
            "mtime": "Sun, 21 Jul 2019 15:36:30 GMT",
            "node_type": "data.structure.StructureData.",
            "process_type": null,
            "user_id": 4,
            "uuid": "98de8d6d-f533-4f97-a8ad-7720cc5ca8f6"
          },
          {
            "attributes.pbc1": null,
            "ctime": "Sun, 21 Jul 2019 15:44:14 GMT",
            "full_type": "data.dict.Dict.|",
            "id": 51311,
            "label": "",
            "mtime": "Sun, 21 Jul 2019 15:44:14 GMT",
            "node_type": "data.dict.Dict.",
            "process_type": null,
            "user_id": 4,
            "uuid": "321795fa-338e-4852-ae72-2eb30e33386e"
          }
          ...
        ]
      },
      "id": null,
      "method": "GET",
      "path": "/api/v4/nodes",
      "query_string": "limit=2&offset=8&orderby=-id",
      "resource_type": "nodes",
      "url": "http://localhost:5000/api/v4/nodes?limit=2&offset=8&orderby=-id",
      "url_root": "http://localhost:5000/"
    }
    
  2. Get a list of all available node types from database.

    REST URL:

    http://localhost:5000/api/v4/nodes/full_types
    

    Description:

    returns the list of full_types from database.

    Response:

    {
        "data": {
            "full_type": "node.%|%",
            "label": node,
            "namespace": "node",
            "path": "node",
            "subspaces": [...]
        },
        "id": null,
        "method": "GET",
        "path": "/api/v4/nodes/full_types",
        "query_string": "",
        "resource_type": "nodes",
        "url": "http://localhost:5000/api/v4/nodes/full_types",
        "url_root": "http://localhost:5000/"
    }
    
  3. Get a list of all available download formats.

    REST URL:

    http://localhost:5000/api/v4/nodes/download_formats
    

    Description:

    returns the list of available download formats.

    Response:

    {
        "data": {
            "data.array.bands.BandsData.|": [
                "agr",
                "agr_batch",
                "dat_blocks",
                "dat_multicolumn",
                "gnuplot",
                "json",
                "mpl_pdf",
                "mpl_png",
                "mpl_singlefile",
                "mpl_withjson"
            ],
            "data.array.trajectory.TrajectoryData.|": [
                "cif",
                "xsf"
            ],
            "data.cif.CifData.|": [
                "cif"
            ],
            "data.structure.StructureData.|": [
                "chemdoodle",
                "cif",
                "xsf",
                "xyz"
            ],
            "data.upf.UpfData.|": [
                "upf"
            ]
        },
        "id": null,
        "method": "GET",
        "path": "/api/v4/nodes/download_formats",
        "query_string": "",
        "resource_type": "nodes",
        "url": "http://localhost:5000/api/v4/nodes/download_formats",
        "url_root": "http://localhost:5000/"
    }
    
  4. Get the details of a single Node object.

    REST URL:

    http://localhost:5000/api/v4/nodes/12f95e1c
    

    Description:

    returns the details of the Node object with uuid="12f95e1c...".

    Response:

    {
      "data": {
        "nodes  ": [
          {
            "ctime": "Sun, 21 Jul 2019 18:18:26 GMT",
            "full_type": "data.remote.RemoteData.|",
            "id": 102617,
            "label": "",
            "mtime": "Sun, 21 Jul 2019 18:18:26 GMT",
            "node_type": "data.remote.RemoteData.",
            "process_type": null,
            "user_id": 4,
            "uuid": "12f95e1c-69df-4a4b-9b06-8e69072e6108"
          }
        ]
      },
      "id": "12f95e1c",
      "method": "GET",
      "path": "/api/v4/nodes/12f95e1c",
      "query_string": "",
      "resource_type": "nodes",
      "url": "http://localhost:5000/api/v4/nodes/12f95e1c",
      "url_root": "http://localhost:5000/"
    }
    
  5. Get the list of incoming of a specific node.

    REST URL:

    http://localhost:5000/api/v4/nodes/de83b1/links/incoming?limit=2
    

    Description:

    returns the list of the first two input nodes (limit=2) of the Node object with uuid="de83b1...".

    Response:

    {
      "data": {
        "incoming": [
          {
            "ctime": "Sun, 21 Jul 2019 08:02:23 GMT",
            "full_type": "data.dict.Dict.|",
            "id": 53770,
            "label": "",
            "link_label": "settings",
            "link_type": "input_calc",
            "mtime": "Sun, 21 Jul 2019 08:02:23 GMT",
            "node_type": "data.dict.Dict.",
            "process_type": null,
            "user_id": 4,
            "uuid": "31993382-c1ab-4822-a116-bd88697f2796"
          },
          {
            "ctime": "Fri, 28 Jun 2019 10:54:25 GMT",
            "full_type": "data.upf.UpfData.|",
            "id": 54502,
            "label": "",
            "link_label": "pseudos__N",
            "link_type": "input_calc",
            "mtime": "Fri, 28 Jun 2019 10:54:28 GMT",
            "node_type": "data.upf.UpfData.",
            "process_type": null,
            "user_id": 4,
            "uuid": "2e2df55d-27a5-4b34-bf7f-911b16da95f0"
          }
        ]
      },
      "id": "de83b1",
      "method": "GET",
      "path": "/api/v4/nodes/de83b1/links/incoming",
      "query_string": "limit=2",
      "resource_type": "nodes",
      "url": "http://localhost:5000/api/v4/nodes/de83b1/links/incoming?limit=2",
      "url_root": "http://localhost:5000/"
    }
    
  6. Filter the incoming/outgoing of a node by their full type.

    REST URL:

    http://localhost:5000/api/v4/nodes/de83b1/links/incoming?full_type="data.dict.Dict.|"
    

    Description:

    returns the list of the *dict* incoming nodes of the *Node* object with ``uuid=”de83b1…”`.

    Response:

    {
      "data": {
        "incoming": [
          {
            "ctime": "Sun, 21 Jul 2019 08:02:23 GMT",
            "full_type": "data.dict.Dict.|",
            "id": 53770,
            "label": "",
            "link_label": "settings",
            "link_type": "input_calc",
            "mtime": "Sun, 21 Jul 2019 08:02:23 GMT",
            "node_type": "data.dict.Dict.",
            "process_type": null,
            "user_id": 4,
            "uuid": "31993382-c1ab-4822-a116-bd88697f2796"
          }
        ]
      },
      "id": "de83b1",
      "method": "GET",
      "path": "/api/v4/nodes/de83b1/links/incoming",
      "query_string": "full_type=%22data.dict.Dict.|%22",
      "resource_type": "nodes",
      "url": "http://localhost:5000/api/v4/nodes/de83b1/links/incoming?full_type=\"data.dict.Dict.|\"",
      "url_root": "http://localhost:5000/"
    }
    

    REST URL:

    http://localhost:5000/api/v4/nodes/de83b1/links/outgoing?full_type="data.dict.Dict.|"
    

    Description:

    returns the list of the dict outgoing nodes of the Node object with uuid="de83b1...".

    Response:

    {
      "data": {
        "outgoing": [
          {
            "ctime": "Sun, 21 Jul 2019 09:08:05 GMT",
            "full_type": "data.dict.Dict.|",
            "id": 67440,
            "label": "",
            "link_label": "output_parameters",
            "link_type": "create",
            "mtime": "Sun, 21 Jul 2019 09:08:05 GMT",
            "node_type": "data.dict.Dict.",
            "process_type": null,
            "user_id": 4,
            "uuid": "861e1108-33a1-4495-807b-8c5189ad74e3"
          }
        ]
      },
      "id": "de83b1",
      "method": "GET",
      "path": "/api/v4/nodes/de83b1/links/outgoing",
      "query_string": "full_type=%22data.dict.Dict.|%22",
      "resource_type": "nodes",
      "url": "http://localhost:5000/api/v4/nodes/de83b1/links/outgoing?full_type=\"data.dict.Dict.|\"",
      "url_root": "http://localhost:5000/"
    }
    
  7. Getting the list of the attributes/extras of a specific node.

    REST URL:

    http://localhost:5000/api/v4/nodes/ffe11/contents/attributes
    

    Description:

    returns the list of all attributes of the Node object with uuid="ffe11...".

    Response:

    {
      "data": {
        "attributes": {
          "append_text": "",
          "input_plugin": "quantumespresso.pw",
          "is_local": false,
          "prepend_text": "",
          "remote_exec_path": "/project/espresso-5.1-intel/bin/pw.x"
        }
      },
      "id": "ffe11",
      "method": "GET",
      "path": "/api/v4/nodes/ffe11/contents/attributes",
      "query_string": "",
      "resource_type": "nodes",
      "url": "http://localhost:5000/api/v4/nodes/ffe11/contents/attributes",
      "url_root": "http://localhost:5000/"
    }
    

    REST URL:

    http://localhost:5000/api/v4/nodes/ffe11/contents/extras
    

    Description:

    returns the list of all the extras of the Node object with uuid="ffe11...".

    Response:

    {
      "data": {
        "extras": {
          "trialBool": true,
          "trialFloat": 3.0,
          "trialInt": 34,
          "trialStr": "trial"
        }
      },
      "id": "ffe11",
      "method": "GET",
      "path": "/api/v4/nodes/ffe11/contents/extras",
      "query_string": "",
      "resource_type": "nodes",
      "url": "http://localhost:5000/api/v4/nodes/ffe11/contents/extras",
      "url_root": "http://localhost:5000/"
    }
    
  8. Getting a user-defined list of attributes/extras of a specific node.

    REST URL:

    http://localhost:5000/api/v4/nodes/ffe11/contents/attributes?attributes_filter=append_text,is_local
    

    Description:

    returns a list of the attributes append_text and is_local of the Node object with uuid="ffe11...".

    Response:

    {
      "data": {
        "attributes": {
          "append_text": "",
          "is_local": false
        }
      },
      "id": "ffe11",
      "method": "GET",
      "path": "/api/v4/nodes/ffe11/contents/attributes",
      "query_string": "attributes_filter=append_text,is_local",
      "resource_type": "nodes",
      "url": "http://localhost:5000/api/v4/nodes/ffe11/contents/attributes?attributes_filter=append_text,is_local",
      "url_root": "http://localhost:5000/"
    }
    

    REST URL:

    http://localhost:5000/api/v4/nodes/ffe11/contents/extras?extras_filter=trialBool,trialInt
    

    Description:

    returns a list of the extras trialBool and trialInt of the Node object with uuid="ffe11...".

    Response:

    {
      "data": {
        "extras": {
          "trialBool": true,
          "trialInt": 34
        }
      },
      "id": "ffe11",
      "method": "GET",
      "path": "/api/v4/nodes/ffe11/contents/extras",
      "query_string": "extras_filter=trialBool,trialInt",
      "resource_type": "nodes",
      "url": "http://localhost:5000/api/v4/nodes/ffe11/contents/extras?extras_filter=trialBool,trialInt",
      "url_root": "http://localhost:5000/"
    }
    
  9. Get comments of specific node.

    REST URL:

    http://localhost:5000/api/v4/nodes/ffe11/contents/comments
    

    Description:

    returns comments of the given node

    Response:

    {
        "data": {
            "comments": ["This is test comment.", "Add another comment."]
        },
        "id": "ffe11",
        "method": "GET",
        "path": "/api/v4/nodes/ffe11/contents/comments/",
        "query_string": "",
        "resource_type": "nodes",
        "url": "http://localhost:5000/api/v4/nodes/ffe11/contents/comments/",
        "url_root": "http://localhost:5000/"
    }
    
  10. Get list of all the files/directories from node repository

    REST URL:

    http://localhost:5000/api/v4/nodes/ffe11/repo/list
    

    Description:

    returns list of all the files/directories from node repository

    Response:

    {
        "data": {
            "repo_list": [
                {
                    "name": ".aiida",
                    "type": "DIRECTORY"
                },
                {
                    "name": "_aiidasubmit.sh",
                    "type": "FILE"
                },
                {
                    "name": "aiida.in",
                    "type": "FILE"
                },
                {
                    "name": "out",
                    "type": "DIRECTORY"
                },
                {
                    "name": "pseudo",
                    "type": "DIRECTORY"
                }
            ]
        },
        "id": "ffe11",
        "method": "GET",
        "path": "/api/v4/nodes/ffe11/repo/list/",
        "query_string": "",
        "resource_type": "nodes",
        "url": "http://localhost:5000/api/v4/nodes/ffe11/repo/list/",
        "url_root": "http://localhost:5000/"
    }
    
  11. Download a file from node repository

    REST URL:

    http://localhost:5000/api/v4/nodes/ffe11/repo/contents?filename="aiida.in"
    

    Description:

    downloads the file aiida.in from node repository

    Response:

    It downloads the file.
    
  12. There are specific download formats (check nodes/download_formats endpoint) available to download different types of nodes. This endpoint is used to download file in given format.

    REST URL:

    http://localhost:5000/api/v4/nodes/fafdsf/download?download_format=xsf
    

    Description:

    downloads structure node of uuid=fafdsf in xsf format

    Response:

    It downloads the file.
    

Processes

  1. Get a process report.

    REST URL:

    http://localhost:5000/api/v4/processes/8b95cd85/report
    

    Description:

    returns report of process of uuid="8b95cd85-...."

    Response:

    {
        "data": {
            "logs": []
        },
        "id": "8b95cd85",
        "method": "GET",
        "path": "/api/v4/processes/8b95cd85/report",
        "query_string": "",
        "resource_type": "processes",
        "url": "http://localhost:5000/api/v4/processes/8b95cd85/report",
        "url_root": "http://localhost:5000/"
    }
    

CalcJobs

  1. Get a list of input or output files of given calcjob node.

    REST URL:

    http://localhost:5000/api/v4/calcjobs/sffs241j/input_files
    

    Description:

    returns list of all input files of given calcjob node of uuid="sffs241j-...."

    Response:

    {
        "data": [
            {
                "name": ".aiida",
                "type": "DIRECTORY"
            },
            {
                "name": "_aiidasubmit.sh",
                "type": "FILE"
            },
            {
                "name": "aiida.in",
                "type": "FILE"
            },
            {
                "name": "out",
                "type": "DIRECTORY"
            },
            ...
        ],
        "id": "sffs241j",
        "method": "GET",
        "path": "/api/v4/calcjobs/sffs241j/input_files",
        "query_string": "",
        "resource_type": "calcjobs",
        "url": "http://localhost:5000/api/v4/calcjobs/sffs241j/input_files",
        "url_root": "http://localhost:5000/"
    }
    

Users

  1. Getting a list of the users

    REST URL:

    http://localhost:5000/api/v4/users/
    

    Description:

    returns a list of all the User objects.

    Response:

    {
      "data": {
        "users": [
          {
            "first_name": "AiiDA",
            "id": 1,
            "institution": "",
            "last_name": "Daemon"
          },
          {
            "first_name": "Gengis",
            "id": 2,
            "institution": "",
            "last_name": "Khan"
          }
        ]
      },
      "id": null,
      "method": "GET",
      "path": "/api/v4/users/",
      "query_string": "",
      "resource_type": "users",
      "url": "http://localhost:5000/api/v4/users/",
      "url_root": "http://localhost:5000/"
    }
    
  2. Getting a list of users whose first name starts with a given string

    REST URL:

    http://localhost:5000/api/v4/users/?first_name=ilike="aii%"
    

    Description:

    returns a lists of the User objects whose first name starts with "aii", regardless the case of the characters.

    Response:

    {
      "data": {
        "users": [
          {
            "first_name": "AiiDA",
            "id": 1,
            "institution": "",
            "last_name": "Daemon"
          }
        ]
      },
      "id": null,
      "method": "GET",
      "path": "/api/v4/users/",
      "query_string": "first_name=ilike=%22aii%%22",
      "resource_type": "users",
      "url": "http://localhost:5000/api/v4/users/?first_name=ilike=\"aii%\"",
      "url_root": "http://localhost:5000/"
    }
    

Groups

  1. Getting a list of groups

    REST URL:

    http://localhost:5000/api/v4/groups/?limit=10&orderby=-user_id
    

    Description:

    returns the list of ten Group objects (limit=10) starting from the 1st row of the database table (offset=0) and the list will be ordered by user_id in descending order.

    Response:

    {
      "data": {
        "groups": [
          {
            "description": "",
            "id": 104,
            "label": "SSSP_new_phonons_0p002",
            "type_string": "",
            "user_id": 2,
            "uuid": "7c0e0744-8549-4eea-b1b8-e7207c18de32"
          },
          {
            "description": "",
            "id": 102,
            "label": "SSSP_cubic_old_phonons_0p025",
            "type_string": "",
            "user_id": 1,
            "uuid": "c4e22134-495d-4779-9259-6192fcaec510"
          },
          ...
    
        ]
      },
      "id": null,
      "method": "GET",
      "path": "/api/v4/groups/",
      "query_string": "limit=10&orderby=-user_id",
      "resource_type": "groups",
      "url": "http://localhost:5000/api/v4/groups/?limit=10&orderby=-user_id",
      "url_root": "http://localhost:5000/"
    }
    
  2. Getting the details of a specific group

    REST URL:

    http://localhost:5000/api/v4/groups/a6e5b
    

    Description:

    returns the details of the Group object with uuid="a6e5b...".

    Response:

    {
      "data": {
        "groups": [
          {
            "description": "GBRV US pseudos, version 1.2",
            "id": 23,
            "label": "GBRV_1.2",
            "type_string": "data.upf.family",
            "user_email": "aiida@theossrv5.epfl.ch",
            "user_id": 2,
            "uuid": "a6e5b6c6-9d47-445b-bfea-024cf8333c55"
          }
        ]
      },
      "id": "a6e5b,
      "method": "GET",
      "path": "/api/v4/groups/a6e5b",
      "query_string": "",
      "resource_type": "groups",
      "url": "http://localhost:5000/api/v4/groups/a6e5b",
      "url_root": "http://localhost:5000/"
    }
    

Filtering results

The filter query string is formed by one or more fields, separated by the special character &. Each field has the form (key)(operator)(value). The same constraints that apply to the names of python variables determine what are the valid keys, namely, only alphanumeric characters plus _ are allowed and the first character cannot be a number.

Unique filters

Unique filters can be specified only once in a query string. All of them must be followed by the operator =.

limit

This key only supports integer values.

offset

Same format as limit.

perpage

Same format as limit.

orderby

This key is used to impose a specific ordering to the results. Two orderings are supported, ascending or descending. The value for the orderby key must be the name of the property with respect to which to order the results. Additionally, + or - can be pre-pended to the value in order to select, respectively, ascending or descending order. Specifying no leading character is equivalent to select ascending order. Ascending (descending) order for strings corresponds to alphabetical (reverse-alphabetical) order, whereas for datetime objects it corresponds to chronological (reverse-chronological order). Examples:

http://localhost:5000/api/v4/computers?orderby=+id
http://localhost:5000/api/v4/computers?orderby=+name
http://localhost:5000/api/v4/computers?orderby=-uuid
attributes_filter

This key is used to specify which attributes of a specific object have to be returned. The desired attributes have to be provided as a comma-separated list of values. It is used in the endpoints /contents/attributes and /nodes. Example:

http://localhost:5000/api/v4/nodes/4fb10ef1/contents/attributes?attributes_filter=append_text,prepend_text
extras_filter

Similar to attributes_filter but for extras. It is used in the endpoints /contents/extras and /nodes.

attributes

by default attributes are not returned in /nodes endpoint. To get the list of all attributes specify attributes=true and to get selected attribute(s) list, use attributes=true&attributes_filters=<comma separated list of attributes you want to request>.

extras

by default extras are not returned in /nodes endpoint. To get the list of all extras specify extras=true and to get selected extras list, use extras=true&extras_filters=<comma separated list of extras you want to request>.

download_format

to specify download format in /download endpoint.

download

in /download endpoint, if download=false it displays the content in the browser instead of downloading a file.

filename

this filter is used to pass file name in /repo/list and /repo/contents endpoint.

tree_in_limit

specifies the limit on tree incoming nodes.

tree_out_limit

specifies the limit on tree outgoing nodes.

Regular filters

Regular filters can be compounded (requiring all specified filters to apply):

string

Text enclosed in double quotes. If the string contains double quotes those have to be escaped as "" (two double quotes). Note that in the unlikely occurrence of a sequence of double quotes you will have to escape it by writing twice as many double quotes.

integer

Positive integer numbers.

datetime

Datetime objects expressed in the format (DATE)T(TIME)(SHIFT) where (SHIFT) is the time difference with respect to the UTC time. This is required to avoid any problem arising from comparing datetime values expressed in different time zones. The formats of each field are:

  1. YYYY-MM-DD for (DATE) (mandatory).

  2. HH:MM:SS for (TIME) (optional). The formats HH and HH:MM are supported too.

  3. +/-HH:MM for (SHIFT) (optional, if present requires (TIME) to be specified). The format +/-HH is allowed too. If no shift is specified UTC time is assumed. The shift format follows the general convention that eastern (western) shifts are positive (negative). The API is unaware of daylight saving times so the user is required to adjust the shift to take them into account.

This format is ISO-8601 compliant. Note that date and time fields have to be separated by the character T. Examples:

http://localhost:5000/api/v4/nodes?ctime>2019-04-23T05:45+03:45
http://localhost:5000/api/v4/nodes?ctime<2019-04-23T05:45
http://localhost:5000/api/v4/nodes?mtime>=2019-04-23
bool

It can be either true or false (lower case).

The following table reports what is the value type and the supported resources associated to each key.

Note

In the following id is a synonym for pk (often used in other sections of the documentation).

key

value type

resources

id

integer

users, computers, groups, nodes

user_id

integer

groups

uuid

string

computers, groups, nodes

name

string

computers

first_name

string

users

last_name

string

users

institution

string

users

label

string

groups, nodes,

description

string

computers, groups

transport_type

string

computers

scheduler_type

string

computers

attributes

string

nodes

ctime

datetime

nodes

mtime

datetime

nodes

node_type

string

nodes

full_type

string

nodes

type_string

string

groups

hostname

string

computers

* Key not available via the /users/ endpoint for reasons of privacy.

The operators supported by a specific key are uniquely determined by the value type associated to that key. For example, a key that requires a boolean value admits only the identity operator =, whereas an integer value enables the usage of the relational operators =, <, <=, >, >= plus the membership operator =in=. Please refer to the following table for a comprehensive list.

operator

meaning

accepted value types

=

identity

integers, strings, bool, datetime

>

greater than

integers, strings, datetime

<

lower than

integers, strings, datetime

>=

greater than or equal to

integers, strings, datetime

<=

lower than or equal to

integers, strings, datetime

=like=

pattern matching

strings

=ilike=

case-insensitive pattern matching

strings

=in=

identity with one element of a list

integers, strings, datetime

The pattern matching operators =like= and =ilike= must be followed by the pattern definition, namely, a string where two characters assume special meaning:

  1. % is used to replace an arbitrary sequence of characters, including no characters.

  2. _ is used to replace one or zero characters.

Differently from =like=, =ilike= assumes that two characters that only differ in the case are equal.

To prevent interpreting special characters as wildcards, these have to be escaped by pre-pending the character \.

Examples:

Filter

Matched string

Non-matched string

name=like="a%d_"

“aiida”

“AiiDA”

name=ilike="a%d_"

“aiida”, “AiiDA”

name=like="a_d_"

“aiida”

name=like="aii%d_a"

“aiida”

uuid=like="cdfd48%"

“cdfd48f9-7ed2-4969-ba06-09c752b83d2”

description=like="This calculation is %\% useful"

“This calculation is 100% useful”

The membership operator =in= has to be followed by a comma-separated list of values of the same type. The condition is fulfilled if the column value of an object is an element of the list.

Examples:

http://localhost:5000/api/v4/nodes?id=in=45,56,78
http://localhost:5000/api/v4/computers/?scheduler_type=in="slurm","pbs"

The relational operators ‘<’, ‘>’, ‘<=’, ‘>=’ assume natural ordering for integers, (case-insensitive) alphabetical ordering for strings, and chronological ordering for datetime values.

Examples:

  • http://localhost:5000/api/v4/nodes?id>578 selects the nodes having an id larger than 578.

  • http://localhost:5000/api/v4/users/?last_name<="m" selects only the users whose last name begins with a character in the range [a-m].

Note

Node types have to be specified by a string that defines their position in the AiiDA source tree ending with a dot. Examples:

  • node_type="data.code.Code." selects only objects of Code type

  • node_type="data.remote.RemoteData." selects only objects of RemoteData type

Note

If you use in your request the endpoint links/incoming (links/outgoing) together with one or more filters, the latter are applied to the incoming (outgoing) nodes of the selected id. For example, the request:

http://localhost:5000/api/v4/nodes/a67fba41/links/outgoing?full_type="data.dict.Dict.|"

would first search for the outgoing of the node with uuid starting with “a67fba41” and then select only those nodes of full_type data.dict.Dict.|.