API: Project management

Last updated: January 26, 2023Author: Jakub Pomykała

Project management API contains two endpoints for creating new projects and listing existing projects.

Using this endpoint requires HTTP Basic authentication with your login credentials (email and password).

If you used GitHub or Google Account to create your account, then you need to set up a password for your account in account settings.

Table of contents

Create project

POST
https://api.simplelocalize.io
/api/v1/projects

Sample request

curl
    --location
    --request POST 'https://api.simplelocalize.io/api/v1/projects' \
    --header 'Authorization: Basic <TOKEN>' \
    --header 'Content-Type: application/json' \
    --data-raw '{
        "name": "My new project"
    }'

Request fields

  • name (required) - project name

Example successful response

{
	"msg": "OK",
	"status": 200,
	"data": {
		"name": "My new project",
		"languages": [
			{
				"key": "en",
				"name": "English",
				"isDefault": false,
				"order": 0
			}
		],
		"projectToken": "<PROJECT_TOKEN>",
		"apiKey": "<PROJECT_API_KEY>",
		"keys": 0,
		"unpublishedChanges": 0,
		"translatedPercentage": 0.0,
		"translatedKeysByLanguage": {}
	}
}

List projects

GET
https://api.simplelocalize.io
/api/v1/projects

Sample request

curl
    --location
    --request GET 'https://api.simplelocalize.io/api/v1/projects' \
    --header 'Authorization: Basic <TOKEN>'

Example successful response

{
	"msg": "OK",
	"status": 200,
	"data": [
		{
			"name": "My Project Name",
			"languages": [
				{
					"key": "en",
					"name": "english",
					"isDefault": true,
					"order": 0
				}
			],
			"customers": [
                {
                    "key": "my-customer",
                    "description": "My customer description"
                }
			],
			"projectToken": "<PROJECT_TOKEN>",
			"apiKey": "<PROJECT_API_KEY>",
			"keys": 357,
			"unpublishedChanges": 5,
			"translatedPercentage": 0.74,
			"translatedKeysByLanguage": {
				"en": 264
			}
		}
	]
}