CryptoMinds LogoCryptoMinds

Documentation

Everything you need to integrate and use our services effectively

500+
API Endpoints
100+
Code Examples
24/7
Documentation Updates

Getting Started in 4 Easy Steps

Follow these simple steps to integrate CryptoMinds services into your application.

01

Create an Account

Sign up for a free account to get your API credentials

02

Get API Keys

Generate your unique API keys from the dashboard

03

Install SDK

Choose your preferred language and install our SDK

04

Make First Request

Start integrating with our comprehensive API

API Reference

Complete reference for all available API endpoints and methods.

Categories

Users

5 endpoints available

GET
/api/v1/users

Get all users

Parameters:

pagelimitsort
POST
/api/v1/users

Create a new user

Parameters:

nameemailpassword
GET
/api/v1/users/:id

Get user by ID

Parameters:

id
PUT
/api/v1/users/:id

Update user

Parameters:

idnameemail
DELETE
/api/v1/users/:id

Delete user

Parameters:

id

Code Examples

Ready-to-use code examples in your favorite programming language.

Authentication

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 User

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);

Fetch Data

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);

Need More Examples?

Explore our GitHub repository for complete code samples, tutorials, and integration guides.