FitBark API

Just a small update in case others are having trouble obtaining the API. I used the Fitbark app to chat with customer service, and they forwarded my request to the correct team. A week or two later, I got an email with my key.

1 Like

For anyone looking to add their dog’s activity after getting the API access. What I did is set up a couple rest sensors like this.

sensor:
  - platform: rest
    resource: https://app.fitbark.com/api/v2/dog/DogID
    scan_interval: 600
    name: Winston's Activity
    headers:
      Authorization: 'Bearer {ACCESS_TOKEN}'
    value_template: '{{ value_json.dog.activity_value }}'
  - platform: rest
    resource: https://app.fitbark.com/api/v2/dog/DogID2
    scan_interval: 600
    name: Charlie's Activity
    headers:
      Authorization: 'Bearer {ACCESS_TOKEN}'
    value_template: '{{ value_json.dog.activity_value }}'

Is there anyway to do this without API access? I have a regular FitBark user login. All I want is to get the battery level.

I have tried several times to request API access but no responses. I went through the app help chat and they told me that the API people would reply when they reply.