Loop over an array and assigning to url within uri module

Hi Team

i have an array from my previous playbook and saving it as a fact called as

“ansible_facts”{
“response_cloud_id”: [
“34eedfc”,
“6733fdc”
]
},

I want to use this response_cloud_id for each object as a variable and pass into my URI module in the URL
https://cloudzone.net/api/{{ response_cloud_id }}/zone
how can I assign every element in the array to the URL loop through the array in the URL and make multiple calls till the array length is met?

Please help,

thanks
Reehan

- name: Run uri in a loop
  ansible.builtin.uri:
    url: [https://cloudzone.net/api/](https://cloudzone.net/api/){{ item }}/zone
  loop: '{{ response_cloud_id }}'

See https://docs.ansible.com/ansible/latest/playbook_guide/playbooks_loops.html#standard-loops