> ## Documentation Index
> Fetch the complete documentation index at: https://docs.axionquant.com/llms.txt
> Use this file to discover all available pages before exploring further.

# SupplyChainAPI

> Supply chain relationships and networks

## customers()

```typescript theme={null}
customers(ticker: string): Promise<ApiResponse>
```

Get customer relationships for a company.

<ParamField path="ticker" type="string" required>
  Stock ticker symbol
</ParamField>

### Example

```typescript theme={null}
const customers = await client.supplyChain.customers('AAPL');
```

## peers()

```typescript theme={null}
peers(ticker: string): Promise<ApiResponse>
```

Get peer companies.

<ParamField path="ticker" type="string" required>
  Stock ticker symbol
</ParamField>

### Example

```typescript theme={null}
const peers = await client.supplyChain.peers('AAPL');
```

## suppliers()

```typescript theme={null}
suppliers(ticker: string): Promise<ApiResponse>
```

Get supplier relationships for a company.

<ParamField path="ticker" type="string" required>
  Stock ticker symbol
</ParamField>

### Example

```typescript theme={null}
const suppliers = await client.supplyChain.suppliers('AAPL');
```
