> For the complete documentation index, see [llms.txt](https://docs.protokol.com/developers/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.protokol.com/developers/sdk/voting/api-endpoints/configurations.md).

# Configurations

### /configurations

<mark style="color:blue;">`GET`</mark> `http://localhost:4003/api/voting/configurations`&#x20;

Returns configurations for voting core plugins.

{% tabs %}
{% tab title="200 " %}

```javascript
{
  "data": {
    "api": {
      "packageName": "@protokol/voting-api",
      "currentVersion": "1.0.0",
      "latestVersion": "1.0.0"
    },
    "transactions": {
      "packageName": "@protokol/voting-transactions",
      "currentVersion": "1.0.0",
      "latestVersion": "1.0.0"
    },
    "crypto": {
      "packageName": "@protokol/voting-crypto",
      "currentVersion": "1.0.0",
      "latestVersion": "1.0.0"
    }
  }
}
```

{% endtab %}
{% endtabs %}

#### Curl Example

```
curl http://localhost:4003/api/voting/configurations
```
