# `Faker.Gov.Us`
[🔗](https://github.com/artkay/fakerer/blob/v1.0.0/lib/faker/gov/us.ex#L1)

Generating US Taxpayer Identification numbers

# `ein`

```elixir
@spec ein() :: String.t()
```

Returns a random Employer Identification Number

## Examples

    iex> Faker.Gov.Us.ein()
    "04-0389586"
    iex> Faker.Gov.Us.ein()
    "07-8027034"
    iex> Faker.Gov.Us.ein()
    "41-6859447"
    iex> Faker.Gov.Us.ein()
    "83-6106581"

# `ssn`

```elixir
@spec ssn() :: String.t()
```

Returns a random US Social Security number

## Examples

    iex> Faker.Gov.Us.ssn()
    "838-84-5749"
    iex> Faker.Gov.Us.ssn()
    "719-41-8674"
    iex> Faker.Gov.Us.ssn()
    "213-54-3766"
    iex> Faker.Gov.Us.ssn()
    "379-09-6851"

---

*Consult [api-reference.md](api-reference.md) for complete listing*
