Custom Field with counter value increased by API call

Hi there!

I am looking to add a custom field which upon an API call can simply increase by one.

example:

User: Tony
ContactUsPageViewCounter: 3 // a custom field with id=75

request url (example)
https://youraccountname.api-us1.com/api/3/contact/sync

request body (example)

    const bodyData = {
        "contact": {
            "email": email,
            "fieldValues":[
                {
                    "field": "75", // id of custom field 'ContactUsPageViewCounter'
                    "value": "+1"
                }
            ]
        }
    };

Result:
ContactUsPageViewCounter: 4

is there currently anything like that existing in Active Campaign?