Everything you need to integrate and use our services effectively
Follow these simple steps to integrate CryptoMinds services into your application.
Sign up for a free account to get your API credentials
Generate your unique API keys from the dashboard
Choose your preferred language and install our SDK
Start integrating with our comprehensive API
Complete reference for all available API endpoints and methods.
5 endpoints available
/api/v1/usersGet all users
/api/v1/usersCreate a new user
/api/v1/users/:idGet user by ID
/api/v1/users/:idUpdate user
/api/v1/users/:idDelete user
Ready-to-use code examples in your favorite programming language.
Initialize SDK and authenticate
// Initialize the SDK
const CryptoMinds = require('@cryptominds/sdk');
const client = new CryptoMinds({
  apiKey: 'your_api_key_here',
  apiSecret: 'your_api_secret_here'
});
// Authenticate
const auth = await client.authenticate();
console.log('Authenticated:', auth.success);Create a new user account
// Create a new user
const user = await client.users.create({
  name: 'John Doe',
  email: 'john@example.com',
  password: 'securePassword123'
});
console.log('User created:', user.id);Retrieve paginated data
// Fetch paginated data
const projects = await client.projects.list({
  page: 1,
  limit: 10,
  status: 'active'
});
console.log('Projects:', projects.data);
console.log('Total:', projects.total);Explore our GitHub repository for complete code samples, tutorials, and integration guides.