You are in the need of JSON.parse(), once this is done, you will be able to access the data. Here's what it looks like from a code perspective.
const data = JSON.parse('{\"title\": \"uno\"}'
console.log(data)
// Output: {title: 'uno'}
console.log(data.title)
// Output: uno