Getting Started

    1. Navigate to https://app.fauxlio.dev
    2. Click Sign Up and enter your email and password.
    3. Click Create Account.
    Create Account Screenshot

    Your account will be created instantly, but you must verify your email before generating an API key.

    1. Check your inbox for a verification email from Fauxlio. For good measure, make sure to check your spam/junk folder, just in case.
    2. Open the email and click Verify Email.
    1. Log into https://app.fauxlio.dev .
    2. Go to Integrations -> Shopify -> API Keys.
    3. Click Create API Key.
    ⚠️ Important: API keys are hashed and cannot be retrieved later. Copy it and store it securely.
    API Key Screenshot

    You can generate multiple keys if needed (for development, staging, etc.).

    1. Install the Shopify client library for your programming language.
    2. 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);
                      
                    
  1. Run the code snippet above to test your connection. You should see a response with product data.

  2. Your API should now respond just like Shopify's. Try fetching products, customers, or orders.

    View All Queries →