Can HomeKit help me make a web call (custom or IFTTT) with Siri?

I’m a big PiHole fan, but every now and then I want to disable PiHole for a bit so I can access a site that is blocked, usually an advertisement. This turns it off for 120 seconds:

https://pihole.example.com/api.php?disable=120&auth=encryptedhashvalue

And if I want to turn it on before the 2 minutes are up:

https://pihole.example.com/api.php?enable&auth=encryptedhashvalue

I use IFTTT to monitor Google Assistant phrases which then calls the webhook. It looks like

Id like to be able to use Siri to make a similar webhook call. Will home bridge or HomeKit let me do something like this?

So I got this working with HomeKit:

shell_commands.yaml

temporarily_disable_pihole: curl 'http://pi.hole/admin/api.php?disable=120&auth=PWHASH'

scripts.yaml

#script:
temporarily_disable_pihole:
  sequence:
    - service: shell_command.temporarily_disable_pihole
    - service: script.turn_off
      entity_id: script.temporarily_disable_pihole