const response = await fetch('https://api-v2.respell.ai/spells/bulkStart', {
  method: 'POST',
  headers: {
    authorization: 'Bearer {{ YOUR API KEY }}',
    accept: 'application/json',
    'content-type': 'application/json',
  },
  body: JSON.stringify({
    spellId: '{{ YOUR SPELL ID }}',
    inputs: [{
        "search_topic": "{{ YOUR CUSTOM INPUT }}"
      },{
        "search_topic": "{{ YOUR SECOND CUSTOM INPUT }}"
      }]
  }),
})