[[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"]
----
  N60 [
    label = "{Node\[60\]|name = \'Juliet\'\l}"
  ]
  N61 [
    label = "{Node\[61\]|name = \'Romeo\'\l}"
  ]
  N61 -> N60 [
    color = "#2e3436"
    fontcolor = "#2e3436"
    label = "LOVES\ncost = \'high\'\l"
  ]
----

_Example request_

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

_Example response_

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


