# How do I access a single item from a Fuse ReactiveArray 

**URL:** https://forums.fusetools.com/t/how-do-i-access-a-single-item-from-a-fuse-reactivearray/7001
**Category:** How-to Discussions
**Created:** [January 30, 2016, 5:30pm UTC](https://forums.fusetools.com/t/how-do-i-access-a-single-item-from-a-fuse-reactivearray/7001 "2016-01-30T17:30:00Z")
**Posts on this page:** 2
**Page:** 1

<div class="post-metadata">

### Author: ![Neo\_Ighodaro](https://yyz1.discourse-cdn.com/flex035/user_avatar/forums.fusetools.com/neo_ighodaro/32/367_2.png) [@Neo\_Ighodaro](https://forums.fusetools.com/u/Neo_Ighodaro)
#### Post date: [January 30, 2016, 5:30pm UTC](https://forums.fusetools.com/t/how-do-i-access-a-single-item-from-a-fuse-reactivearray/7001/1 "2016-01-30T17:30:00Z")

</div>

Heres the JSON data im working with.

 ![file](https://s3.us-east-2.amazonaws.com/fuse-legacy-forum-assets/0YiwSfXIeZnv-legacy-files-ai1nm8TGofT2pDFc-MJeSxbR1z2WlyIOVFJggkvVA.png)

Here’s the area where I wanna call the json code

```auto
<ScrollView SnapMinTransform="false">
    <DockPanel>
        <PullRefresh Dock="Top" />
        <StackPanel Alignment="Top">
            <Each Items="{data.items}">
                <!-- Works as expected -->
                <Rectangle Height="180">
                    <ImageFill Url="{thumbnail}" ContentAlignment="TopCenter" StretchMode="UniformToFill" />
                </Rectangle>

                <!-- Doesnt Work -->
                <Rectangle Height="180">
                    <ImageFill Url="{images[0].originalSizeUrl}" ContentAlignment="TopCenter" StretchMode="UniformToFill" />
                </Rectangle>
            </Each>
        </StackPanel>
    </DockPanel>
</ScrollView>

```

As you can see from the code snippet I cant seem to access a single item off the Images array, is there anyway to do this?

---

<div class="post-metadata">

### Author: ![Bjorn-Olav\_Strand](https://yyz1.discourse-cdn.com/flex035/user_avatar/forums.fusetools.com/bjorn-olav_strand/32/583_2.png) [@Bjorn-Olav\_Strand](https://forums.fusetools.com/u/Bjorn-Olav_Strand)
#### Post date: [January 30, 2016, 7:14pm UTC](https://forums.fusetools.com/t/how-do-i-access-a-single-item-from-a-fuse-reactivearray/7001/2 "2016-01-30T19:14:32Z")

</div>

There is no way to access items in an array with DataBinding. You need to transform your JSON in your JavaScript.
