How to Find My Salesforce Instance
- Sophie Ricci
- Views : 28,543
Table of Contents
You open your browser, type in Salesforce, and suddenly you need the exact instance URL — for an integration, an API call, or just to share with your team. And you’re stuck.
It happens more than you’d think. With over 150,000 businesses running on Salesforce globally, and the platform holding roughly 23% of the global CRM market share, there are millions of users who hit this exact wall every week.
The good news? Finding your Salesforce instance takes under 60 seconds once you know where to look. This guide covers every method — from the simplest browser trick to digging through API settings — so you’re never stuck again.
What Is a Salesforce Instance?
Before diving into the how, it’s worth knowing the what.
A Salesforce instance is the specific server cluster that hosts your organization’s Salesforce environment. Think of it like an apartment building — Salesforce is the building, and your instance is the specific unit your company lives in.
Each instance has a unique URL that looks something like:
https://na1.salesforce.com
https://eu12.salesforce.com
https://ap5.salesforce.com
The prefix (na1, eu12, ap5) tells you which data center and server cluster your org is running on. This matters for:
- API integrations — third-party tools often need the exact instance URL
- SSO configurations — Single Sign-On setups require precise instance info
- Data residency compliance — knowing your region (NA, EU, AP) for regulatory requirements
- Support tickets — Salesforce support often asks for your instance when troubleshooting
Why Knowing Your Instance Matters
Over 90% of Salesforce customers use at least one third-party integration connected to their org. Every single one of those integrations requires your instance URL at some point during setup.
If you’re in a sales or revenue operations role, your Salesforce instance is the backbone of your outbound process — the system where leads are logged, deals are tracked, and pipeline is built. Getting the technical details right isn’t optional; it’s what separates teams that run clean, scalable outbound from those constantly firefighting broken integrations.
<!– RIGHT SIDE STICKY BANNER –> <!– ============================================================ BANNER PLACEMENT: Position this as a sticky sidebar widget on the right side of the page. It should appear fixed as the reader scrolls through the “Why Knowing Your Instance Matters” section and remain visible throughout the article. BEFORE (end of section): “…teams that run clean, scalable outbound from those constantly firefighting broken integrations.” >>> STICKY BANNER APPEARS HERE ON RIGHT SIDE <<< AFTER (next section begins): “## Method 1: Check Your Browser’s Address Bar” ============================================================ 🎯 Get More From Your CRM Turn your Salesforce data into booked meetings with complete targeting, campaign design, and scaling. [Book Strategy Meeting] COLOR SPECS: – Banner background: #ECECFE – Text color: #1F2124 – CTA background: #2A5AF8 – CTA text: #FFFFFF ============================================================ –>
Method 1: Check Your Browser’s Address Bar
This is the fastest method and works 90% of the time.
Steps:
- Log in to your Salesforce account at login.salesforce.com
- Once logged in, look at your browser’s address bar
- The URL will automatically update to your instance URL
You’ll see something like:
https://na1.salesforce.com/home/home.jsp
The na1 part before .salesforce.com is your instance identifier. Your full instance URL is everything up to and including .salesforce.com.
Pro tip: If your org uses My Domain (a custom Salesforce URL), the address bar may show something like https://yourcompany.my.salesforce.com. This is still your instance — just branded with your company’s domain.
Method 2: Find It Through Salesforce Setup
If you have admin access, the Setup menu gives you the most complete picture of your org’s instance details.
Steps:
- Click the gear icon (⚙️) in the top-right corner
- Select Setup
- In the Quick Find search box, type “Company Information”
- Click Company Information under Company Settings
- Look for the Instance field — it will display your exact instance name (e.g., NA1, EU12)
This method also shows you your Org ID, which you’ll often need alongside your instance URL for API configurations and support cases.
Method 3: Use the Login Page Redirect
Even before you’re fully logged in, Salesforce tells you your instance.
Steps:
- Go to login.salesforce.com
- Enter your email and password
- Watch the URL bar as the page loads
The moment authentication completes, your browser redirects to your instance. Watch for the redirect — it flashes your instance URL before landing on your home page.
If you miss it, hit F5 to refresh your home page and the URL in the address bar will show your instance.
Method 4: Check Via the Salesforce API
If you’re a developer or setting up an API connection, you can retrieve your instance URL programmatically.
Using the REST API: After authenticating via OAuth 2.0, the token response includes an instance_url field:
{
“access_token”: “your_access_token”,
“instance_url”: “https://na1.salesforce.com”,
“id”: “https://login.salesforce.com/id/…”,
“token_type”: “Bearer”
}
The instance_url value is exactly what you need for all subsequent API calls.
Using SOQL: If you have API access already configured, run this SOQL query in the Developer Console or API explorer:
SELECT InstanceName FROM Organization
This returns the instance name directly from your org’s metadata.
Method 5: Find It in Your Welcome Email
When your Salesforce org was first set up, Salesforce sent a welcome or verification email to the admin. That email contains your instance URL.
Search your inbox (or ask your Salesforce admin to check theirs) for:
- From: noreply@salesforce.com
- Subject lines containing: “Your Salesforce account” or “Welcome to Salesforce”
The email will include a direct login link that contains your instance URL.
Method 6: Check Your SSO or IT Configuration
If your company uses Single Sign-On (SSO) through tools like Okta, Azure AD, or Google Workspace, your IT team has already configured the exact Salesforce instance URL in the SSO settings.
Where to find it:
- In Okta: Go to your Salesforce app → Sign On → scroll to find the Salesforce Base URL
- In Azure AD: Go to Enterprise Applications → Salesforce → Single sign-on → look for the Entity ID field
- In Google Workspace: Go to Apps → SAML apps → Salesforce → Service Provider Details → ACS URL
Each of these will contain your full instance URL embedded in the configuration.
Common Instance URL Formats
Understanding the naming convention helps you recognize your instance at a glance:
Prefix Format | Region | Example |
na + number | North America | na1.salesforce.com |
eu + number | Europe | eu12.salesforce.com |
ap + number | Asia Pacific | ap5.salesforce.com |
cs + number | Sandbox | cs20.salesforce.com |
Custom domain | My Domain | yourcompany.my.salesforce.com |
Note: Salesforce has been migrating orgs to Hyperforce, its next-generation infrastructure. Hyperforce instance URLs follow a slightly different format: [region].salesforce.com (e.g., usa.salesforce.com). If your org is on Hyperforce, the methods above still work — you’ll just see a different URL pattern.
As of 2024, Salesforce reported that over 40% of new customer deployments are on Hyperforce infrastructure, with full migration expected across the platform by 2025.
Salesforce Instances vs. Sandboxes
One common source of confusion: your production instance and your sandbox instance are different.
- Production instance: Your live Salesforce environment (e.g., na1.salesforce.com)
- Sandbox instance: Your test/development environment (e.g., cs20.salesforce.com or yourcompany–sandboxname.sandbox.my.salesforce.com)
Sandbox URLs follow a different naming convention and are hosted on separate infrastructure. Always double-check which environment you’re working in before making configuration changes.
Salesforce offers 4 types of sandbox environments — Developer, Developer Pro, Partial Copy, and Full Copy — each with their own instance URLs.
What to Do With Your Instance URL
Once you have it, here’s where you’ll typically need it:
API and Integration Setup Paste your instance URL as the base URL in tools like Zapier, Make (formerly Integromat), or any custom API integration. Every endpoint call will use https://[your-instance].salesforce.com/services/… as the base.
Support Cases When logging a Salesforce support ticket, include your instance name upfront. Salesforce has over 75,000 employees and their support teams route issues partly by instance — providing it upfront speeds up resolution.
Data Residency Documentation For compliance with GDPR, CCPA, or other data regulations, your instance URL tells you (and your compliance team) exactly where your data lives geographically.
Email-to-Case and Web-to-Lead Forms These Salesforce features require your org’s instance URL in their configuration endpoints.
Troubleshooting: When You Can’t Find Your Instance
My URL shows login.salesforce.com even after logging in This usually means you’re using a bookmark that redirects to the login page. Clear your browser cache, log out completely, and log back in via login.salesforce.com.
My URL shows a custom domain and I need the underlying instance Go to Setup → Company Information → Instance field. This always shows the underlying instance regardless of My Domain configuration.
I’m getting a different instance than expected Salesforce occasionally migrates orgs to new instances. If you’re seeing an unfamiliar instance, check your email for a migration notice from Salesforce. As of 2023, Salesforce completed instance migrations for over 20,000 organizations as part of its infrastructure consolidation program.
My Salesforce is managed through a partner or reseller Contact your Salesforce partner directly — they’ll have your org’s instance details in their partner portal and can share them in minutes.
🚀 Ready to Scale Your Outreach?
Your profile photo is just the start. We design complete LinkedIn prospecting campaigns that fill your calendar with qualified meetings—using proven systems that work.
7-day Free Trial |No Credit Card Needed.
FAQs
How do I find my Salesforce instance URL to connect it to outbound tools?
What is a Salesforce instance?
Can I change my Salesforce instance?
Does my instance URL change when I enable My Domain?
We deliver 100–400+ qualified appointments in a year through tailored omnichannel strategies
- blog
- Sales Development
- How to Find My Salesforce Instance