There’s a curated list of properties which /profiles API endpoint allows you to filter by, so off the top of my head the only way I could think of doing this is to use a relatively unfiltered call to /profiles to get all your subscribers, paginate through and put them into a temporary table or similar, then go through that table looking for matches on your custom property.
You could speed this up by creating a segment with users who have the custom property set, and use segments/{id}/relationships/profiles/ to only fetch the profiles related to that segment.
It *might* be possible to use a POST to segments/ to dynamically create a segment which has that particular ID in the custom property, and then just fetch that, which should have only a single profile, maybe? Problem there is segments take a while to create, so there’ll be a delay.
Hopefully someone else has a quicker way!
G