# List Companies

## GET or POST Request

{% hint style="info" %}
<https://v1.api19.com/ra/companies/list>
{% endhint %}

Get a list of all of your companies on your account and show the price you're paying per registered agent company

{% tabs %}
{% tab title="Curl Post" %}

```php
curl https://v1.api19.com/ra/companies/list \
 -d 'key=api_token'
```

{% endtab %}

{% tab title="Curl Get" %}

```php
curl https://v1.api19.com/ra/companies/list?key=apikey
```

{% endtab %}

{% tab title="JSON Response" %}

```json
{
    "status": "ok",
    "data": {
        "8fb10148-jj22-4038-mm22-36fa2f28978f": {
            "uu_id": "8fb10148-jj22-4038-mm22-36fa2f28978f",
            "name": "moo communications llc",
            "home_state": "Florida",
            "jurisdictions": null,
            "create_dt": "2025-05-10 17:07:15",
            "agent_count": "10"
        },
    "price": "85"
}

ERROR:
{
    "status": "error",
    "error": "No companies found - Create one"
}

```

{% endtab %}
{% endtabs %}
