For the complete documentation index, see llms.txt. This page is also available as Markdown.

Create Registered Agent

Create a new registered agent address for an existing company

GET or POST Request

https://v1.api19.com/ra/registered_agent/create

Create a new registered agent and get an address for your company

Argument

Required

Type

company_id

yes

company_id from list companies

jurisdictions

yes

JSON Array:

["Colorado", "Nebraska"] OR

PLAIN TEXT: Colorado

auto_renew

yes

yes or no

key

yes

your API key

curl https://v1.api19.com/ra/registered_agent/create \
 -d 'company_id=j203h-hj32fh-32hf923hf' \
 -d 'jurisdictions=["Colorado","Nebraska"]' \
 -d 'auto_renew=yes' \
 -d 'key=api_token'
OK:
{
  "status": "ok",
  "data": [
    {
      "id": "ad088553-j28q-j1v5-969b-fdcfcf3edea2",
      "type": "registered-agent",
      "status": "active",
      "company_id": "a7c234ff-mmj2-k1j4-aef4-dbd1e3a6b27a",
      "created_at": "2025-05-12T06:56:09.000+00:00",
      "updated_at": "2025-05-12T06:56:09.000+00:00",
      "jurisdiction": "New York",
      "jurisdiction_id": "6267cc34-c663-45ea-886b-9f38fab870d4",
      "company": "moo communications llc",
      "registered_agent": {
        "name": "Registered Agents Inc.",
        "address": {
          "line1": "418 Broadway",
          "line2": "STE R",
          "state_province_region": "NY",
          "city": "Albany",
          "zip_postal_code": "12207"
        }
      },
      "service_info": []
    },
    {
      "id": "f3d4jjh2-2j38-4168-af04-849kk111800",
      "type": "registered-agent",
      "status": "active",
      "company_id": "a7c2jjhh-ea7c-4b24-aef4-db1j3na6b27a",
      "created_at": "2025-05-12T06:56:09.000+00:00",
      "updated_at": "2025-05-12T06:56:09.000+00:00",
      "jurisdiction": "California",
      "jurisdiction_id": "072dccf7-678d-466f-b072-fc2876c6b79c",
      "company": "moo communicaitons llc",
      "registered_agent": {
        "name": "Registered Agents Inc",
        "address": {
          "line1": "1401 21st ST",
          "line2": "STE R",
          "state_province_region": "CA",
          "city": "Sacramento",
          "zip_postal_code": "95811"
        }
      },
      "service_info": []
    }
  ]
}

ERROR:
{
    "status": "error",
    "error": "Company already exists"
}

Supported States

array:

["Alabama", "Alaska", "Arizona", "Arkansas", "California", "Colorado", "Connecticut", "Delaware", "District of Columbia", "Florida", "Georgia", "Hawaii", "Idaho", "Illinois", "Indiana", "Iowa", "Kansas", "Kentucky", "Louisiana", "Maine", "Maryland", "Massachusetts", "Michigan", "Minnesota", "Mississippi", "Missouri", "Montana", "Nebraska", "Nevada", "New Hampshire", "New Jersey", "New Mexico", "New York", "North Carolina", "North Dakota", "Ohio", "Oklahoma", "Oregon", "Pennsylvania", "Rhode Island", "South Carolina", "South Dakota", "Tennessee", "Texas", "Utah", "Vermont", "Virginia", "Washington", "West Virginia", "Wisconsin", "Wyoming", "American Samoa", "Federal", "Guam", "Northern Mariana Islands", "U.S. Virgin Islands", "Puerto Rico"];

Last updated