# Dart

The Circular Blockchain API suite provides a robust and efficient interface for interacting with the Circular Protocol, a decentralized and highly scalable blockchain network. These APIs enable developers to integrate, query, and execute operations on the Circular Protocol blockchain, supporting a wide range of decentralized applications (dApps), financial transactions, and smart contracts.

### Install

Clone the GitHub repository with

```bash
git clone https://github.com/circular-protocol/circular-dart.git
```

Put the `circular_api` in the project folder where you're working on.

Enter in the `pubspec.yaml` this value in the dependencies list:

```yaml
dependencies:
  circular_api:
    path: /path/to/circular_api
```

and then launch

```bash
dart pub get
```

import where you need the API with

```dart
import 'package:CircularDartAPI/circular.dart';
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://circular-protocol.gitbook.io/standard-apis/api-docs/dart.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
