Developer Hub

All the resources you need to build with APINow.fun.

← Back to Home

Develop with Existing Endpoints

Browse our marketplace of onchain APIs ready to be integrated into your applications.

Programmatically Find Endpoints

Use our SDK and vectorized search to discover and call endpoints dynamically.

Add Your Own Endpoints

Monetize your own data and tools by adding them to our marketplace. Use our OpenAPI spec uploader, AI text tool, or a simple form.

Provide Feedback or Report a Bug

Have an idea or found an issue? We'd love to hear from you. Contact us on X.

Join the Community

Connect with other developers, share what you're building, and help shape the future of the decentralized API economy.

Contribute on GitHub

Our SDK is open source. Feel free to contribute, open issues, or check out the code.

Get Started Quickly

import apiNow from 'apinow-sdk';

async function callApi() {
  const endpoint = 'https://apinow.fun/api/endpoints/apinowfun/translate-TRANSLATE';
  // WARNING: Use a dedicated, funded wallet for security.
  const userWalletPrivateKey = 'YOUR_WALLET_PRIVATE_KEY';

  try {
    const response = await apiNow.execute(
      endpoint, 
      userWalletPrivateKey, {
        method: 'POST', // Assuming POST, can be made dynamic
        data: {
  "text": "Hello world!"
}
      });
    console.log('API Response:', response);
  } catch (error) {
    console.error('Failed to call API:', error);
  }
}

callApi();

More Tools & Resources