--- title: App Bridge APIs and web methods description: App Bridge APIs provide your app with access to Shopify Admin functionality through the `shopify` global variable. These APIs enable your app to read context, navigate between pages, launch workflows, and provide feedback to merchants. api_name: app-home source_url: html: https://shopify.dev/docs/api/app-home/apis md: https://shopify.dev/docs/api/app-home/apis.md --- # App Bridge APIs and web methods This section covers two types of APIs you can use in your app: * **App Bridge APIs** provide functionality that isn't available through standard web APIs, such as rendering UI outside of the app's iframe or launching native Shopify admin pages and workflows. * **Standard web APIs**, such as `fetch`, work in your app but might behave differently because your app runs in an iframe. Where behavior differs, this section documents the correct usage. All App Bridge APIs are available through the `shopify` global object. If you're building with React, you can use the [`useAppBridge`](https://shopify.dev/docs/api/app-home/apis/react-hooks/useappbridge) hook to access the same object. ### Adding App Bridge to your app When you scaffold your app using [Shopify CLI](https://shopify.dev/docs/api/shopify-cli), the App Bridge library is added to your app automatically. You can also manually add App Bridge in any framework by adding the following script tag to your app's HTML head: ##### HTML ```html ``` ##### Remix ```tsx // app/root.tsx export default function App() { return (