Not able to call API

i’m not able to calll API’s using below expression.

{{context.Fetchdetails.response.body.value}}

API : https://fakerapi.it/api/v1/credit_cards?_quantity

@sachin Without knowing how actually you are calling the API and consuming it I am not sure if I will be able to guide you.
The API https://fakerapi.it/api/v1/credit_cards?_quantity gives the below JSON.


Whichever service node you are using to call, say it is named - callService1
Have a message node after that to print the entire response -
print(JSON.stringify(context.callService1.response));
See what you get. Then you can look if you really have a body and value under it to build a proper path. From what I see, there is no value under body when you call this API.

@swagata.sengupta i’m using service node and there is no data printing in message node

@sachin
Please follow the example I have provided and see if that works for you.