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
Your Code
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
MCP for AI Agents
Integrate APINow with AI agents in environments like Cursor and Claude for autonomous API calls.
Vibe Coding with APINow
Use our interactive environment to rapidly build and test with onchain APIs.
Submit an Endpoint
Have an API to share? Use our simple forms, OpenAPI spec uploader, or AI text tool to add it to the marketplace.