Most issues in SphereScout have a quick fix. This page walks through the problems users run into most often, organized by area, so you can find the right solution without digging through settings. If you work through the steps here and the problem persists, the support team is available at support@spherescout.io.Documentation Index
Fetch the complete documentation index at: https://docs.spherescout.io/llms.txt
Use this file to discover all available pages before exploring further.
Login and account
I can't log in to my account
I can't log in to my account
- Check your email address — make sure you’re using the same address you signed up with. If you registered with Google, you need to use Continue with Google rather than entering your email and password manually.
- Check your password — passwords are case-sensitive. If you’re unsure, use the Forgot password link on the login page to reset it.
- Try Google login — if you originally signed up with Google, the email/password form won’t work for your account. Look for the Continue with Google button on the login page.
- Clear your browser cache — a stale session cookie can occasionally prevent login. Clear your cache and cookies, then try again.
I'm not receiving the password reset email
I'm not receiving the password reset email
- Check your spam folder — password reset emails occasionally land in spam or junk. Search for an email from
spherescout.io. - Wait five minutes — email delivery can be delayed, especially through corporate mail servers. Give it a few minutes before requesting another reset.
- Request a second reset — go back to the login page, click Forgot password, and submit the form again. Only the most recent reset link is valid.
- Check for typos — confirm you entered the correct email address when you requested the reset.
My account appears locked or suspended
My account appears locked or suspended
- Do not attempt to create a new account, as this may complicate the resolution.
- Contact the support team directly at support@spherescout.io and include the email address associated with your account.
Credits and billing
My credits aren't appearing after payment
My credits aren't appearing after payment
- Wait two to three minutes — payment processing can occasionally take a moment to propagate to your credit balance.
- Refresh the dashboard — a hard refresh (Ctrl+Shift+R on Windows/Linux, Cmd+Shift+R on Mac) clears the cached balance display.
- Check your email — look for a payment confirmation from Stripe. If no confirmation arrived, the payment may not have completed.
I'm getting an 'insufficient credits' error when trying to download
I'm getting an 'insufficient credits' error when trying to download
- Check your balance — your current credit balance is shown in the top bar of the dashboard. Confirm how many credits you have available.
- Reduce the export size — apply tighter filters to narrow your results to fewer contacts so the export fits within your remaining balance.
- Buy a top-up — purchase a one-time credit top-up from the billing page to add credits immediately without changing your plan.
- Upgrade your plan — if you’re consistently hitting the limit, upgrading to the next plan tier gives you a larger monthly allocation.
My payment was declined
My payment was declined
- Verify your card details — check that the card number, expiry date, and CVC are entered correctly, including the billing address if your card requires it.
- Try a different card — if you have another card available, use that to complete the purchase.
- Contact your bank — some banks block unfamiliar online transactions by default. Call the number on the back of your card to authorize the charge, then retry.
- Check your spending limit — some prepaid and virtual cards have per-transaction limits that may be lower than the purchase amount.
Searches and exports
My search is returning 0 results
My search is returning 0 results
- Remove one filter at a time — start by removing the most specific filter (city, then region) and re-run the search after each removal to see where results appear.
- Try a broader category — if you’re searching for a narrow specialty, try the parent category. For example, search “Healthcare” instead of a specific subspecialty.
- Change the country — if your target market has low coverage, try a neighboring country or a larger market to confirm the category exists in the database.
- Check your spelling — if you typed in the category search box, verify the term is spelled correctly or choose from the dropdown list instead.
My export is stuck on 'processing'
My export is stuck on 'processing'
- Refresh the page — the export may have completed but the status display didn’t update. Check your Export History to see if the file is ready.
- Check your email — large exports are also sent to your account email address when they’re ready.
- Try a smaller export — if the export is very large, split it into smaller batches by applying tighter location or category filters.
My CSV file won't open
My CSV file won't open
- Use Excel or Google Sheets — double-clicking a CSV on some operating systems opens it in a plain text editor. Right-click the file and choose to open it with Excel, or upload it to Google Sheets.
- Check the encoding in Excel — if special characters (accents, non-Latin scripts) appear as symbols, use Excel’s Data > From Text/CSV import option and select UTF-8 encoding during import.
- Rename the file extension — if the file downloaded without a
.csvextension, rename it tofilename.csvbefore opening.
Some contacts in my export are missing an email or phone number
Some contacts in my export are missing an email or phone number
- Use presence filters before exporting — in the search filters, enable Has email, Has phone, Has website, or the relevant social platform filter. Only contacts that have that field will appear in your results and export.
- Combine presence filters — you can apply multiple presence filters at once to require, for example, both an email and a phone number.
Data freshness
The freshness check shows no updates
The freshness check shows no updates
I'm seeing a 'check rate limited' error on my freshness check
I'm seeing a 'check rate limited' error on my freshness check
API
I'm getting a 401 Unauthorized error
I'm getting a 401 Unauthorized error
I'm getting a 429 Too Many Requests error
I'm getting a 429 Too Many Requests error
- Slow down your request rate — add a delay between requests in your code. A small pause of even 200–500 milliseconds between calls is usually enough to stay within limits.
- Batch your requests — instead of making many small requests, combine filters to retrieve larger result sets per call.
- Implement retry logic with backoff — when you receive a 429, wait before retrying. Exponential backoff (doubling the wait time on each retry) is a reliable approach.