2023-04-07 07:49:11 -04:00
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
[Home ](./index.md ) > [bitburner ](./bitburner.md ) > [Singularity ](./bitburner.singularity.md ) > [getCompanyPositionInfo ](./bitburner.singularity.getcompanypositioninfo.md )
## Singularity.getCompanyPositionInfo() method
Get Requirements for Company Position.
**Signature:**
```typescript
2023-08-16 17:31:41 -04:00
getCompanyPositionInfo(
companyName: CompanyName | `${CompanyName}` ,
positionName: JobName | `${JobName}` ,
): CompanyPositionInfo;
2023-04-07 07:49:11 -04:00
```
## Parameters
| Parameter | Type | Description |
| --- | --- | --- |
2023-08-16 17:31:41 -04:00
| companyName | [CompanyName ](./bitburner.companyname.md ) \| \`${[CompanyName ](./bitburner.companyname.md )<!-- --> }\` | Name of company to get the requirements for. Must be an exact match. |
| positionName | [JobName ](./bitburner.jobname.md ) \| \`${[JobName ](./bitburner.jobname.md )<!-- --> }\` | Name of position to get the requirements for. Must be an exact match. |
2023-04-07 07:49:11 -04:00
**Returns:**
[CompanyPositionInfo ](./bitburner.companypositioninfo.md )
CompanyPositionInfo object.
## Remarks
RAM cost: 2 GB \* 16/4/1
This function will return an object that contains the requirements for a specific position at a specific country.
## Example
```js
const companyName = "ECorp";
const position = "Chief Executive Officer";
let requirements = ns.singularity.getCompanyPositionInfo(companyName, position);
```