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
---
title: "Api Reference"
description: "Documentation for Api Reference"
---

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


<!-- markdownlint-disable MD013 line-length -->

# API Reference

## Table of Contents

- [Section 1]#section-1
- [Section 2]#section-2


## Overview

Anya provides a comprehensive REST and WebSocket API for integrating Bitcoin infrastructure into enterprise applications. This reference covers all available endpoints, authentication, error handling, and best practices.

## Authentication

### API Keys


```rust
// Request with API key
GET /api/v1/transactions
Authorization: Bearer YOUR_API_KEY
```


### OAuth2

```rust
// OAuth2 token request
POST /oauth/token
Content-Type: application/x-www-form-urlencoded

grant_type=client_credentials
&client_id=YOUR_CLIENT_ID
&client_secret=YOUR_CLIENT_SECRET
```

## REST API

### Transaction Endpoints


#### Create Transaction

```rust
POST /api/v1/transactions
Content-Type: application/json

{
    "recipients": [{
        "address": "bc1q...",
        "amount": "0.1"
    }],
    "fee_rate": "5",
    "rbf": true
}

```

#### Get Transaction

```rust

GET /api/v1/transactions/{txid}
```

#### List Transactions

```rust
GET /api/v1/transactions?limit=10&offset=0

```

### Wallet Endpoints

#### Create Wallet

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

{
    "name": "main",

    "type": "segwit",
    "backup_type": "encrypted"
}
```


#### Get Wallet

```rust
GET /api/v1/wallets/{wallet_id}
```

#### List Wallets


```rust
GET /api/v1/wallets?limit=10&offset=0
```

### Contract Endpoints

#### Create Contract

```rust
POST /api/v1/contracts
Content-Type: application/json


{
    "type": "dlc",
    "oracle": "oracle_id",
    "outcomes": ["true", "false"],
    "collateral": "1.0"

}
```

#### Get Contract

```rust
GET /api/v1/contracts/{contract_id}
```

#### Execute Contract

```rust

PUT /api/v1/contracts/{contract_id}/execute
Content-Type: application/json

{
    "outcome": "true"
}
```

## WebSocket API

### Connection

```rust
// Connect to WebSocket

ws://api.anya.com/v1/ws

// Authentication message
{
    "type": "auth",
    "api_key": "YOUR_API_KEY"
}
```

### Subscriptions

#### Transaction Updates

```rust
// Subscribe
{
    "type": "subscribe",
    "channel": "transactions"
}


// Update message
{
    "type": "transaction",
    "data": {
        "txid": "...",
        "status": "confirmed",
        "block_height": 700000
    }
}
```

#### Block Updates

```rust
// Subscribe
{
    "type": "subscribe",
    "channel": "blocks"

}

// Update message
{
    "type": "block",
    "data": {
        "height": 700000,
        "hash": "...",
        "timestamp": 1631234567
    }
}
```

#### Contract Updates

```rust
// Subscribe
{
    "type": "subscribe",
    "channel": "contracts"
}


// Update message
{
    "type": "contract",
    "data": {
        "contract_id": "...",
        "status": "executed",
        "outcome": "true"
    }
}
```

## Error Handling


### Error Format

```json
{
    "error": {
        "code": "invalid_request",
        "message": "Invalid transaction parameters",
        "details": {
            "field": "amount",
            "reason": "insufficient_funds"

        }
    }
}
```

### Common Error Codes


- `invalid_request`: Invalid request parameters
- `unauthorized`: Authentication failed
- `forbidden`: Permission denied
- `not_found`: Resource not found
- `rate_limited`: Too many requests
- `internal_error`: Server error


## Rate Limiting

### Headers

```

X-RateLimit-Limit: 1000
X-RateLimit-Remaining: 999
X-RateLimit-Reset: 1631234567
```

### Limits

- REST API: 1000 requests per minute
- WebSocket: 100 messages per second
- Bulk operations: 10 requests per minute

## Pagination

### Request


```rust
GET /api/v1/transactions?limit=10&offset=0
```

### Response


```json
{
    "data": [...],
    "pagination": {
        "total": 100,
        "limit": 10,

        "offset": 0,
        "has_more": true
    }
}
```

## Versioning

### API Versions

- v1: Current stable version
- v2: Beta version (if available)
- v0: Deprecated version


### Headers

```
Accept: application/json; version=1
```

## Examples

### Creating a Transaction

```rust
use anya_sdk::{Client, TransactionBuilder};

let client = Client::new(api_key);
let tx = TransactionBuilder::new()

    .add_recipient("bc1q...", "0.1")
    .set_fee_rate(5)
    .enable_rbf()
    .build()?;

let result = client.send_transaction(tx).await?;
```

### Managing Contracts

```rust
use anya_sdk::{Client, ContractBuilder};

let client = Client::new(api_key);
let contract = ContractBuilder::new()
    .set_type(ContractType::DLC)
    .set_oracle("oracle_id")
    .add_outcomes(vec!["true", "false"])
    .set_collateral("1.0")
    .build()?;

let result = client.create_contract(contract).await?;

```

### WebSocket Subscription

```rust
use anya_sdk::{WebSocketClient, Subscription};


let ws = WebSocketClient::new(api_key);
ws.subscribe(vec![
    Subscription::Transactions,
    Subscription::Blocks,
    Subscription::Contracts,

])?;

while let Some(msg) = ws.next().await {
    match msg {
        Message::Transaction(tx) => println!("New transaction: {}", tx.txid),
        Message::Block(block) => println!("New block: {}", block.height),
        Message::Contract(contract) => println!("Contract update: {}", contract.id),
    }

}
```

## Best Practices

### 1. Error Handling


- Always check error responses
- Implement exponential backoff
- Handle rate limiting
- Log errors appropriately

### 2. Performance

- Use WebSocket for real-time updates
- Implement caching
- Batch operations when possible
- Monitor API usage

### 3. Security

- Secure API keys
- Use HTTPS

- Implement timeouts
- Validate responses

## SDK Support

### Official SDKs

- Rust: `anya-sdk`
- Python: `anya-python`
- JavaScript: `anya-js`
- Go: `anya-go`

### Installation

```bash
## Rust
cargo add anya-sdk

## Python
pip install anya-python

## JavaScript
npm install anya-js

## Go
go get github.com/anya/anya-go
```

## Support

For API support:

- API documentation
- SDK documentation
- Support channels
- Status page

*Last updated: 2025-06-02*

## See Also

- [Related Document]#related-document