# Basic Company Information

### Basic Fields

| Field                  | Type                                                                                                                      | Description                                              |
| ---------------------- | ------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------- |
| companyType            | [CompanyTypeEnum](https://docs.craft.co/company-data-api/graphql-enums/company-type-enum)                                 | Public, private, investor, subsidiary                    |
| countryOfRegistration  | String                                                                                                                    | Country code, e.g. "US"                                  |
| displayName            | String                                                                                                                    | Name of the company                                      |
| duns                   | String                                                                                                                    | DUNS                                                     |
| figi                   | String                                                                                                                    | FIGI                                                     |
| foundedYear            | String                                                                                                                    | Year the company was founded                             |
| id                     | ID                                                                                                                        | Craft ID                                                 |
| jobsCount              | Int                                                                                                                       | Count of job postings                                    |
| locationsCount         | Int                                                                                                                       | Count of corporate office locations                      |
| logo                   | [Image](https://docs.craft.co/company-data-api/graphql-objects/image-object)                                              | Logo of the company                                      |
| longDescription        | String                                                                                                                    | Full description of the company                          |
| parentCompany          | [Company](https://docs.craft.co/company-data-api/data-points)                                                             | Parent company (if subsidiary)                           |
| shortDescription       | String                                                                                                                    | 1 sentence description                                   |
| status                 | [CompanyStatusEnum](https://docs.craft.co/company-data-api/graphql-enums/company-status-enum)                             | `"active"` or `"closed"`                                 |
| stockTicker            | String                                                                                                                    | Ticker for the company (if public)                       |
| stockMarket            | [StockMarket](https://docs.craft.co/company-data-api/data-points/basic-company-information/stock-market)                  | Stock Market (Exchange name) for the company (if public) |
| taxId                  | String                                                                                                                    | Company Tax ID                                           |
| tags                   | \[[Tag](https://docs.craft.co/company-data-api/data-points/basic-company-information/tag)]                                | List of company tags                                     |
| patents                | \[[Patent](https://docs.craft.co/company-data-api/data-points/basic-company-information/patent)!]                         |                                                          |
| productAndServiceCodes | \[[UnspscCode](https://docs.craft.co/company-data-api/data-points/basic-company-information/unspsc-code)!]                |                                                          |
| govSpending            | \[[GovSpending](https://docs.craft.co/company-data-api/data-points/basic-company-information/gov-spending)!]              |                                                          |
| securityRatings        | \[[SecurityRating](https://docs.craft.co/company-data-api/data-points/basic-company-information/security-rating)!]        |                                                          |
| usgProhibitedLists     | \[[USGProhibitedList](https://docs.craft.co/company-data-api/data-points/basic-company-information/usg-prohibited-list)!] |                                                          |

### Web links

| Field      | Type   | Description                          |
| ---------- | ------ | ------------------------------------ |
| blog       | String | Company blog URL                     |
| craftUrl   | String | Company page URL on craft.co website |
| crunchbase | String | Crunchbase URL                       |
| facebook   | String | Facebook URL                         |
| homepage   | String | Company website URL                  |
| instagram  | String | Company Instagram URL                |
| linkedin   | String | Linkedin URL                         |
| pinterest  | String | Pinterest URL                        |
| twitter    | String | Twitter URL                          |
| wikipedia  | String | Wikipedia URL                        |
| youtube    | String | Youtube URL                          |

### Query example

```graphql
# query
query findCompanyByDomain($domain: String!) {
    company(domain: $domain) {
        # Basic fields
        companyType
        countryOfRegistration
        displayName
        duns
        figi
        foundedYear
        id
        jobsCount
        locationsCount
        logo {
            url
        }
        longDescription
        parentCompany {
            displayName
        }
        shortDescription
        status
        stockTicker
        stockMarket {
            mic
            name
        }
        taxId
        tags {
            name
        }
        usgProhibitedLists {
          listName
          code
        }        
        # Web links
        blog
        craftUrl
        crunchbase
        facebook
        homepage
        instagram
        linkedin
        pinterest
        twitter
        youtube
    }
}

# variables
{ "domain": "stripe.com" }
```
