MyAudi: Difference between revisions

From MIB-Helper.com Wiki
Jump to navigation Jump to search
Created page with "Audi’s connected-services ecosystem. <ref>https://www.audi.pl/pl/myaudi/information/</ref> == How it works == The car communicates with Audi servers through: * built-in LTE modem + eSIM/SIM * or tethered phone hotspot (depends on market/features) The MMI logs into your myAudi account using: * VIN * key user registration * Audi backend authentication The app can then exchange data with the vehicle: * location * fuel level * service info * navigation destinations * re..."
 
No edit summary
Line 17: Line 17:
* navigation destinations
* navigation destinations
* remote commands (limited on older cars)
* remote commands (limited on older cars)
== Endpoints ==
<ref>https://github.com/Sapistudio/MyAudi/blob/9eb77dbd052b92eb5331e25849a256a60770182d/src/configs/myaudi.config.php#L12</ref>
    'ENDPOINTS' => [
        'AUDI_API' => 'https://msg.audi.de',
        'REGISTER_APP' => 'https://mbboauth-1d.prd.ece.vwg-connect.com/mbbcoauth/mobile/register/v1',
        'AUDI_REVOKE' => 'https://id.audi.com/v1/revoke',
        'AUDI_TOKEN' => 'https://id.audi.com/v1/token',
        'VW_TOKEN' => 'https://mbboauth-1d.prd.ece.vwg-connect.com/mbbcoauth/mobile/oauth2/v1/token',
        'VW_REVOKE' => 'https://mbboauth-1d.prd.ece.vwg-connect.com/mbbcoauth/mobile/oauth2/v1/revoke',
    ]

Revision as of 09:31, 20 May 2026

Audi’s connected-services ecosystem. [1]

How it works

The car communicates with Audi servers through:

  • built-in LTE modem + eSIM/SIM
  • or tethered phone hotspot (depends on market/features)

The MMI logs into your myAudi account using:

  • VIN
  • key user registration
  • Audi backend authentication

The app can then exchange data with the vehicle:

  • location
  • fuel level
  • service info
  • navigation destinations
  • remote commands (limited on older cars)

Endpoints

[2]

   'ENDPOINTS' => [
       'AUDI_API' => 'https://msg.audi.de',
       'REGISTER_APP' => 'https://mbboauth-1d.prd.ece.vwg-connect.com/mbbcoauth/mobile/register/v1',
       'AUDI_REVOKE' => 'https://id.audi.com/v1/revoke',
       'AUDI_TOKEN' => 'https://id.audi.com/v1/token',
       'VW_TOKEN' => 'https://mbboauth-1d.prd.ece.vwg-connect.com/mbbcoauth/mobile/oauth2/v1/token',
       'VW_REVOKE' => 'https://mbboauth-1d.prd.ece.vwg-connect.com/mbbcoauth/mobile/oauth2/v1/revoke',
   ]