[[rest-api-get-properties-for-node]]
=== Get properties for node ===

.Final Graph
["dot", "Final-Graph-Get-properties-for-node.svg", "neoviz"]
----
  N0 [
    label = "{Node\[0\]|}"
  ]
  N2 [
    label = "{Node\[2\]|foo = \'bar\'\l}"
  ]
----

_Example request_

* *+GET+*  +http://localhost:7474/db/data/node/2/properties+
* *+Accept:+* +application/json+

_Example response_

* *+200:+* +OK+
* *+Content-Type:+* +application/json+
[source,javascript]
----
{
  "foo" : "bar"
}
----


