# List repository languages

From **GitHub v3 REST API**.

`GET /repos/{owner}/{repo}/languages`

Lists languages for the specified repository. The value shown for each language is the number of bytes of code written in that language.

## Parameters

### `owner`

- Location: path
- Required: true
- Type: `string`

### `repo`

- Location: path
- Required: true
- Type: `string`

## Responses

### `200`

Response

### `application/json`

- Type: `object`

Language

```json
{
  "C": 78769,
  "Python": 7769
}
```

```json
{"additionalProperties":{"type":"integer"},"description":"Language","title":"Language","type":"object"}
```

## Request examples

### cURL

```shell
curl --request GET \
  --url {protocol}://{hostname}/api/v3/repos/{owner}/{repo}/languages
```
