Getting Started
-
- Navigate to https://app.fauxlio.dev
- Click Sign Up and enter your email and password.
- Click Create Account.
Your account will be created instantly, but you must verify your email before generating an API key.
-
- Check your inbox for a verification email from Fauxlio. For good measure, make sure to check your spam/junk folder, just in case.
- Open the email and click Verify Email.
-
- Log into https://app.fauxlio.dev .
- Go to Integrations -> Shopify -> API Keys.
- Click Create API Key.
⚠️ Important: API keys are hashed and cannot be retrieved later. Copy it and store it securely.You can generate multiple keys if needed (for development, staging, etc.).
-
- Install the Shopify client library for your programming language.
- Use the API key and domain to connect to Fauxlio.
Use the Shopify client library of your choice. Just replace the domain and API key:
import { createAdminApiClient } from '@shopify/admin-api-client'; const client = createAdminApiClient({ storeDomain: '6fvao84oxdo4.myshopify.fauxlio.dev', apiVersion: 'unstable', apiKey: process.env.FAUXLIO_API_KEY, }); const response = await client.request(` query { products(first: 5) { edges { node { id title } } } } `); console.log(response);
-
Run the code snippet above to test your connection. You should see a response with product data.
-
Your API should now respond just like Shopify's. Try fetching
products
,customers
, ororders
.