anya-core 1.2.0

Enterprise-grade Bitcoin Infrastructure Platform
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
# API Reference

[AIR-3][AIS-3][BPC-3][RES-3]

**AI Labeling**: This documentation is AI-generated with technical review and validation.

**Date**: July 13, 2025

## Overview

Complete API reference for Anya Core, covering Bitcoin, Web5/DID, DLC, and system endpoints. All APIs follow REST conventions with comprehensive error handling and security. This document represents the canonical API reference for Anya Core.

## Table of Contents

- [Authentication]#authentication
- [System API]#system-api
- [Bitcoin Wallet API]#bitcoin-wallet-api
- [Web5/DID API]#web5did-api
- [DLC API]#dlc-api
- [Error Handling]#error-handling
- [Rate Limiting]#rate-limiting

## Authentication

### API Key Authentication

```http
Authorization: Bearer <api_key>
Content-Type: application/json
```


### JWT Token Authentication

```http
Authorization: Bearer <jwt_token>
X-API-Version: v1
```


### Multi-Factor Authentication

For sensitive operations, MFA is required:


```json
{
  "mfa_token": "123456",
  "mfa_method": "totp"
}
```


## System API

### Health Check

Returns the current health status of the API service.

```http
GET /api/v1/health
```


### System Information

Returns information about the system, including version, environment, and configuration.


```http
GET /api/v1/info
```


## Bitcoin Wallet API

### Create Wallet

Creates a new Bitcoin wallet.


```http
POST /api/v1/wallets
Content-Type: application/json

{
  "name": "My Bitcoin Wallet",
  "network": "mainnet",
  "wallet_type": "segwit"
}
```


### Get Wallet

Retrieves information about a specific wallet.


```http
GET /api/v1/wallets/:id
```


### Get Balance

Retrieves the balance for a specific wallet.


```http
GET /api/v1/wallets/:id/balance
```


### Generate Address

Generates a new address for a specific wallet.


```http
POST /api/v1/wallets/:id/address
Content-Type: application/json

{
  "address_type": "p2wpkh"
}
```


### Send Transaction

Creates and sends a new transaction from a specific wallet.


```http
POST /api/v1/wallets/:id/transactions
Content-Type: application/json

{
  "to_address": "bc1q...",
  "amount": 0.001,
  "fee_rate": 5
}
```


### List Transactions

Retrieves transactions for a specific wallet.


```http
GET /api/v1/wallets/:id/transactions
```


## Web5/DID API

### Create Identity

Creates a new decentralized identity (DID).


```http
POST /api/v1/identities
Content-Type: application/json

{
  "method": "key",
  "keyType": "Ed25519"
}
```


### Get Identity

Retrieves information about a specific identity.


```http
GET /api/v1/identities/:id
```


### Create Credential

Creates a new verifiable credential.


```http
POST /api/v1/credentials
Content-Type: application/json

{
  "issuer": "did:key:z6Mk...",
  "subject": "did:key:z6Mk...",
  "type": ["VerifiableCredential", "BTC_Identity"],
  "claims": {
    "name": "Example User",
    "verified": true
  }
}
```


### Get Credential

Retrieves information about a specific credential.


```http
GET /api/v1/credentials/:id
```


### Verify Credential

Verifies the validity of a credential.


```http
POST /api/v1/credentials/verify
Content-Type: application/json

{
  "credential": { /* credential JSON */ }
}
```


## DLC API

### Create Contract

Creates a new Discreet Log Contract (DLC).


```http
POST /api/v1/dlc
Content-Type: application/json

{
  "counterparty": "03a9bd...",
  "oracle": "02abc...",
  "outcomes": [
    {
      "event": "BTC > 50000 USD",
      "payout": { "initiator": 1.0, "counterparty": 0.0 }
    },
    {
      "event": "BTC <= 50000 USD",
      "payout": { "initiator": 0.0, "counterparty": 1.0 }
    }
  ],
  "collateral": 1.0,
  "maturity_time": 1689433200
}
```


### Get Contract

Retrieves information about a specific DLC.


```http
GET /api/v1/dlc/:id
```


### Accept Contract

Accepts a DLC as the counterparty.


```http
POST /api/v1/dlc/:id/accept
```


### Finalize Contract

Finalizes a DLC after acceptance.


```http
POST /api/v1/dlc/:id/finalize
```


### Execute Contract

Executes a DLC based on oracle attestation.


```http
POST /api/v1/dlc/:id/execute
Content-Type: application/json

{
  "attestation": "signature_from_oracle"
}
```


## Error Handling

### Error Format

All API errors are returned in a standardized format:


```json
{
  "success": false,
  "message": "Error message describing the issue"
}
```


For more detailed errors:


```json
{
  "success": false,
  "message": "Validation error",
  "errors": {
    "field_name": "Error description for this field"
  }
}
```


### Common HTTP Status Codes

| Status Code | Description |
|-------------|-------------|
| 200 | OK - Request succeeded |
| 201 | Created - Resource was successfully created |
| 400 | Bad Request - Invalid parameters or validation error |
| 401 | Unauthorized - Authentication required |
| 403 | Forbidden - Insufficient permissions |
| 404 | Not Found - Resource not found |
| 409 | Conflict - Resource already exists or state conflict |
| 500 | Internal Server Error - Unexpected server error |

## Rate Limiting

### Headers

Rate limit information is returned in the response headers:


```http
X-RateLimit-Limit: 100
X-RateLimit-Remaining: 99
X-RateLimit-Reset: 1626307200
```


### Limits

| Endpoint | Anonymous | Authenticated |
|----------|-----------|---------------|
| `/api/v1/*` | 60/hour | 1000/hour |
| `/api/v1/wallets/*` | 30/hour | 500/hour |
| `/api/v1/identities/*` | 30/hour | 500/hour |
| `/api/v1/dlc/*` | 30/hour | 500/hour |

## SDK Examples

### Rust SDK

```rust
use anya_sdk::{AnyaClient, BitcoinApi, Web5Api, MlApi};

#[tokio::main]
async fn main() -> Result<()> {
    let client = AnyaClient::new("your_api_key").await?;
    
    // Bitcoin operations
    let wallet = client.bitcoin().create_wallet("main_wallet").await?;
    let balance = client.bitcoin().get_balance(&wallet.id).await?;
    
    // Web5 operations
    let did = client.web5().create_did("did:key").await?;
    let credential = client.web5().issue_credential(&did, credential_data).await?;
    
    // ML operations
    let prediction = client.ml().run_inference("price_model", input_data).await?;
    
    Ok(())
}
```

### JavaScript SDK

```javascript
import { AnyaClient } from '@anya-core/sdk';

const client = new AnyaClient({ apiKey: 'your_api_key' });

// Bitcoin operations
const wallet = await client.bitcoin.createWallet('main_wallet');
const balance = await client.bitcoin.getBalance(wallet.id);

// Web5 operations
const did = await client.web5.createDid('did:key');
const credential = await client.web5.issueCredential(did, credentialData);

// ML operations
const prediction = await client.ml.runInference('price_model', inputData);
```

### Python SDK

```python
from anya_sdk import AnyaClient

async def main():
    client = AnyaClient(api_key='your_api_key')
    
    # Bitcoin operations
    wallet = await client.bitcoin.create_wallet('main_wallet')
    balance = await client.bitcoin.get_balance(wallet.id)
    
    # Web5 operations
    did = await client.web5.create_did('did:key')
    credential = await client.web5.issue_credential(did, credential_data)
    
    # ML operations
    prediction = await client.ml.run_inference('price_model', input_data)
```

## Resources

- [API Changelog]../../dependencies/CHANGELOG.md
- [SDK Documentation]../README.md
- [Authentication Guide]../integration/authentication.md
- [Rate Limiting Guide]../security/rate-limiting.md

## Support

For API support and questions:

- **Documentation Issues**: GitHub Issues
- **API Support**: api-support@anya-core.dev
- **Discord**: Join our developer community

---

This API reference is maintained by the Anya Core team and updated with each release. For more information, visit [https://developer.anya-core.com](https://developer.anya-core.com).