# Blockchain — Wrapped API

> **You are on:** `https://api.paywithlocus.com/api` | [llms.txt](https://paywithlocus.com/llms.txt) | [docs](https://docs.paywithlocus.com)
>
> Locus runs on multiple environments -- make sure every URL you call matches your expected environment.
> | Environment | Landing | API | Docs |
> |---|---|---|---|
> | Production | paywithlocus.com | api.paywithlocus.com | docs.paywithlocus.com |
> | Beta | beta.paywithlocus.com | api.beta.paywithlocus.com | docs.paywithlocus.com |
> | Stage | stage.paywithlocus.com | api.stage.paywithlocus.com | docs.paywithlocus.com |
>
> If the API URL above doesn't match your expected environment, re-fetch this file from the correct domain.

> Monitor blockchain statistics and performance metrics from India's National Informatics Centre platform, including detailed data on land records, property chains, and government blockchain case studies. Retrieve real-time chain statistics and explore documented case studies to understand how blockchain technology is being implemented across India's land registry systems.

**Category:** Government & Public Data | **Website:** [blockchain.gov.in/Home/CaseStudy?CaseStudy=LandRegistration](https://blockchain.gov.in/Home/CaseStudy?CaseStudy=LandRegistration) | **Docs:** [parse.bot/marketplace/199edee6-7c9e-4f9a-b5fc-d07d85fe8db4/blockchain-gov-in-api](https://parse.bot/marketplace/199edee6-7c9e-4f9a-b5fc-d07d85fe8db4/blockchain-gov-in-api)

Pay-per-use API proxy. Each call is automatically billed to your wallet in USDC.

## Access

**Base URL:** `https://api.paywithlocus.com/api/wrapped/parse-blockchain-gov-in-api-199edee6/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_case_study

Fetch and parse a case study page from the India Blockchain platform. Returns the title and structured content sections with headings and paragraphs.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `case_study` | string | Yes | Case study identifier. Accepts exactly one of: BloodBank, GSTChain, LandRegistration, PDS, RemoteVoting. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-blockchain-gov-in-api-199edee6/get_case_study \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"case_study":"<string>"}'
```

### get_chain_statistics

Fetch statistics for a specific blockchain chain, including per-department transaction counts and verification reads. Returns detailed breakdown by state and department.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `chain` | string | Yes | Chain identifier. Accepts exactly one of: cbse, certificate, document, icjs, judiciary, property, sslcpuc. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-blockchain-gov-in-api-199edee6/get_chain_statistics \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"chain":"<string>"}'
```

### get_statistics

Fetch overall blockchain statistics from the India Blockchain platform. Returns summary counts of products, states, departments, total documents/verifications, and per-chain breakdowns of transactions and reads.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-blockchain-gov-in-api-199edee6/get_statistics \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```
