Introduction

# TurkScan API

The TurkScan API provides programmatic access to Turkchain blockchain data.

The API follows an Etherscan-compatible query structure.

Base URL:

https://api.turkscan.com/api

🔹 Request Format

TurkScan API uses HTTP GET requests with query parameters.

Base URL:

https://api.turkscan.com/api

🔹 General Structure

// Some code
https://api.turkscan.com/api
   ?module=MODULE_NAME
   &action=ACTION_NAME
   &parameter1=value
   &parameter2=value
   &apikey=YourApiKey

| module | Defines the API module (account, transaction, token, block, logs, stats) |

| module | Defines the API module (account, transaction, token, block, logs, stats) |

| apikey | Your API key |

| address | Wallet address (if required) |

| contractaddress | Token contract address (if required) |

| tag | Block tag (latest or block number) |

Last updated