This documentation is available as Markdown for AI agents and LLMs. See the full Markdown index or append .md to any documentation URL.
Start an EAS Simulator session from a link
Edit page
Construct an authenticated expo.dev URL that creates and opens an EAS Simulator session from an EAS Build, build fingerprint, or application archive.
EAS Simulator is a limited-access preview. It is not included with paid or free plans and is currently available only to select partners. Join the waitlist if you are interested in trying it.
A create session link starts an iOS Simulator session from an EAS Build, build fingerprint, or application archive and opens its session page on expo.dev. Use one to add an EAS Simulator action to a pull request, CI result, or an internal tool without integrating the REST API.
Create session links start browser-preview-only sessions. They do not provision agent-device, Appium, or Argent. Use EAS CLI or the REST API when you need a controller, an Android Emulator, a blank device, Expo Go, or custom duration and idle limits.
Opening a create session link starts a new session without a confirmation step. The link is not idempotent: opening it again can create another session that consumes EAS Simulator usage. Share the resulting session page URL when you want someone to view an existing session instead of starting a new one.
Construct the URL
Use the Expo account name and project slug in the URL:
https://expo.dev/accounts/<account>/projects/<project>/simulator-sessions/create?<parameters>
The person opening the link must sign in to an Expo account that can access the project. If they are signed out, expo.dev preserves the complete URL during authentication and starts the session after they sign in.
Choose an application source
Every create session link requires exactly one application source:
Do not include more than one application source. A link without an application source cannot create a session.
EAS treats an empty application source value, such as buildId=, as absent.
Add other parameters
URL-encode parameter values, especially nested URLs and values that contain spaces. Most programming languages provide a URL builder that handles this encoding. For example:
const url = new URL('https://expo.dev/accounts/acme/projects/my-app/simulator-sessions/create'); url.searchParams.set('buildFingerprint', 'FINGERPRINT_HASH'); url.searchParams.set('platform', 'ios'); url.searchParams.set('name', 'PR preview'); url.searchParams.set('deviceIdentifier', 'iPhone 16 Pro'); url.searchParams.append('launchArgs', '-UITestMode'); url.searchParams.append('launchArgs', '1'); url.searchParams.set('openUrl', 'myapp://profile/42'); console.log(url.toString());
Examples
Start a session from an EAS Build
https://expo.dev/accounts/acme/projects/my-app/simulator-sessions/create?buildId=BUILD_UUID
The build must be finished, its artifact must not be expired, and it must target the iOS Simulator instead of a physical iOS device.
Start the most recent installable build with a fingerprint
https://expo.dev/accounts/acme/projects/my-app/simulator-sessions/create?buildFingerprint=FINGERPRINT_HASH&platform=ios
EAS resolves the fingerprint to the most recent installable iOS Simulator build. If no installable build with this fingerprint exists, the link shows a validation error. Use buildId instead when you need to select one specific build.
Name the session and choose a device
https://expo.dev/accounts/acme/projects/my-app/simulator-sessions/create?buildId=BUILD_UUID&name=PR%20preview&deviceIdentifier=iPhone%2016%20Pro
Start a session from an application archive
https://expo.dev/accounts/acme/projects/my-app/simulator-sessions/create?applicationArchiveUrl=https%3A%2F%2Fcdn.example.com%2FMyApp.app.zip&platform=ios
Pass launch arguments and open a deep link
https://expo.dev/accounts/acme/projects/my-app/simulator-sessions/create?buildId=BUILD_UUID&launchArgs=-UITestMode&launchArgs=1&openUrl=myapp%3A%2F%2Fprofile%2F42
What happens when the link opens
After authentication, expo.dev validates the parameters and build, creates the session, and redirects to its session page:
https://expo.dev/accounts/<account>/projects/<project>/simulator-sessions/<session-id>
The session page shows its startup progress and the browser preview when it becomes available. Keep this resulting URL to return to or share the same session.
Closing the page or navigating away does not cancel a session creation that the service already accepted, and it does not stop a running session. Stop the session when you finish so that it does not continue consuming usage.
If the parameters or build are invalid, expo.dev shows a Cannot start simulator session error instead. Common causes include an unfinished or expired build, an iOS device build, a fingerprint without platform, no installable build for a fingerprint, an unsupported archive URL, or more than one application source.