---
title: "Get info for a specific company."
method: GET
path: "/api/companies/{companyId}"
tags: ["Company Info"]
---

# Get info for a specific company.

`GET /api/companies/{companyId}`

## Path parameters

- `companyId` string, required

## Response `200`

The info for the given company id

- CompanyInfoDto — Company information
  - `id` string, required — Unique id associated to this entity.
  - `isPrimary` boolean, required — Denotes whether this is the primary/default company information
  - `name` string, required — Company name
  - `shipToAddress` CommonAddressDto, required — Address definition
    - `name` string, nullable — Name of the address (Bob's Shipping, Primary, Reno Warehouse, etc).
    - `address1` string, required — Primary address line.
    - `address2` string, nullable — Second address line.
    - `address3` string, nullable — Third address line.
    - `city` string, required — Address city
    - `stateProvince` string, nullable — Address state/province.
    - `postalCode` string, required — Postal/zip code.
    - `country` string, nullable — Country identifier.
    - `phone` string, tel, nullable — Phone number.
    - `email` string, email, nullable — Email address
  - `remitToAddress` CommonAddressDto, required — Address definition
    - `name` string, nullable — Name of the address (Bob's Shipping, Primary, Reno Warehouse, etc).
    - `address1` string, required — Primary address line.
    - `address2` string, nullable — Second address line.
    - `address3` string, nullable — Third address line.
    - `city` string, required — Address city
    - `stateProvince` string, nullable — Address state/province.
    - `postalCode` string, required — Postal/zip code.
    - `country` string, nullable — Country identifier.
    - `phone` string, tel, nullable — Phone number.
    - `email` string, email, nullable — Email address
  - `websiteUrl` string, uri, nullable — Company website
  - `phoneNumber` string, nullable — Company phone number
  - `faxNumber` string, nullable — Company fax number
  - `email` string, email, nullable — Company email address

## Other responses

- `404` — Company did not exist

---

[API](https://skmtc.net/fulcrumpro/apis/fulcrum-publicapi.md) · [All operations](https://skmtc.net/fulcrumpro/apis/fulcrum-publicapi/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/fulcrumpro/fulcrum-publicapi/versions/1b5649cff14a/schema)
