[[rest-api-get-single-property-on-a-relationship]]
=== Get single property on a relationship ===

.Final Graph
["dot", "Final-Graph-get-single-property-on-a-relationship.svg", "neoviz"]
----
  N53 [
    label = "{Node\[53\]|name = \'Juliet\'\l}"
  ]
  N54 [
    label = "{Node\[54\]|name = \'Romeo\'\l}"
  ]
  N54 -> N53 [
    color = "#2e3436"
    fontcolor = "#2e3436"
    label = "LOVES\ncost = \'high\'\l"
  ]
----

_Example request_

* *+GET+*  +http://localhost:7474/db/data/relationship/21/properties/cost+
* *+Accept:+* +application/json+

_Example response_

* *+200:+* +OK+
* *+Content-Type:+* +application/json+
[source,javascript]
----
"high"
----


