# Capital

The `Capital` object represents the share capital structure of an entity.

## Fields

| Field            | Type          | Description                                |
| ---------------- | ------------- | ------------------------------------------ |
| `capitalPaid`    | number        | Paid-up capital amount                     |
| `capitalTotal`   | number        | Total authorized/registered capital amount |
| `currency`       | string        | Currency code (e.g., `EUR`, `GBP`, `USD`)  |
| `numberOfShares` | number        | Total number of shares issued              |
| `shareValue`     | number        | Nominal value per share                    |
| `shareClasses`   | ShareClass\[] | Breakdown by share class                   |

### ShareClass Object

| Field   | Type   | Description                                             |
| ------- | ------ | ------------------------------------------------------- |
| `class` | string | Name of the share class (e.g., `Ordinary`, `Preferred`) |
| `count` | number | Number of shares in this class                          |

## Example

```json
{
  "capitalTotal": 1000000,
  "capitalPaid": 500000,
  "currency": "EUR",
  "numberOfShares": 10000,
  "shareValue": 100,
  "shareClasses": [
    {
      "class": "Ordinary",
      "count": 8000
    },
    {
      "class": "Preferred",
      "count": 2000
    }
  ]
}
```


---

# 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://equinoxe-systems.gitbook.io/revolutio-api/data-models/capital.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.
