Getting Started

From zero to your first Web3Connected API call in under 5 minutes.

  1. 1

    Create Your Account

    Sign up for a free Web3Connected account. No credit card required for the free tier.

    Register Now ->
  2. 2

    Create a Tenant

    After registration, create your first tenant workspace to organize your projects and API keys.

    Go to Onboarding ->
  3. 3

    Get Your API Key

    Navigate to your dashboard and generate an API key for the service you want to use.

    Dashboard / API Keys ->
  4. 4

    Install the SDK

    Install the Web3Connected SDK for your platform using npm or yarn.

    npm install @web3codex/components
  5. 5

    Make Your First Call

    Use your API key to authenticate and call a Web3Connected service.

    const response = await fetch('https://api.web3connected.com/v1/hash', {
      method: 'POST',
      headers: {
        'Authorization': 'Bearer YOUR_API_KEY',
        'Content-Type': 'application/json',
      },
      body: JSON.stringify({ data: 'Hello Web3!' }),
    });
    
    const { hash } = await response.json();
    console.log('Hash:', hash);