ListRepositories
curl --request GET \
--url https://api.gitlocalize.com/v1/repositories \
--header 'Authorization: Bearer <token>'const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.gitlocalize.com/v1/repositories', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.gitlocalize.com/v1/repositories"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)[
{
"id": 123,
"name": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"private": true
}
]Repositories
List Repositories
Page through the repositories connected to your account.
GET
/
v1
/
repositories
ListRepositories
curl --request GET \
--url https://api.gitlocalize.com/v1/repositories \
--header 'Authorization: Bearer <token>'const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.gitlocalize.com/v1/repositories', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.gitlocalize.com/v1/repositories"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)[
{
"id": 123,
"name": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"private": true
}
]Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Query Parameters
Required range:
x <= 1000Last id from the previous page; ordered by id.

