BlockGuard API

BlockGuard provides a public API that allows developers to integrate our database of malicious blockchain addresses into their own applications. The API is RESTful and returns data in JSON format.

API Base URL

https://api.blockguard.one
View API Documentation

Authentication

Currently, the API is available for public use without authentication. However, we recommend contacting us if you plan to use the API in production to discuss rate limits and access requirements.

Rate Limiting

Currently, there are no strict rate limits in place. However, we ask that you be considerate with your API usage. If you plan to make a large number of requests, please contact us to discuss your needs.

Example Endpoints

GET /addresses

Returns a paginated list of malicious addresses with optional filtering.

https://api.blockguard.one/addresses?page=1&limit=25

GET /address/{address}

Returns details for a specific address.

https://api.blockguard.one/address/0x123456789abcdef

GET /check_wallet/{address}

Checks if a wallet address has any suspicious activity.

https://api.blockguard.one/check_wallet/0x123456789abcdef

GET /check_token/{address}

Checks if a token contract has spam characteristics.

https://api.blockguard.one/check_token/0x123456789abcdef

Integration

You can easily integrate BlockGuard's API into your applications using standard HTTP requests. Here's a simple example using JavaScript:

// Example: Check if an address is malicious
async function checkAddress(address) {
  try {
    const response = await fetch(
      `https://api.blockguard.one/address/${address}`
    );
    
    if (response.status === 404) {
      return { isMalicious: false };
    }
    
    if (!response.ok) {
      throw new Error('API request failed');
    }
    
    const data = await response.json();
    return { 
      isMalicious: true, 
      details: data 
    };
  } catch (error) {
    console.error('Error checking address:', error);
    return { error: error.message };
  }
}

Support

If you have any questions about using our API or need help with integration, please contact our developer support team at api@blockguard.one.

Ready to get started?

Explore our comprehensive API documentation to learn more about available endpoints, request parameters, and response formats.

View API Documentation