How AI is applied across API Evangelist and APIs.io. Read my AI disclosure →
API Evangelist API Evangelist
Discovery
Learnings
Guidance
Toolbox
Alignment
API Evangelist LLC

Smartling Authentication API

Smartling uses OAuth2 for [authentication](https://help.smartling.com/hc/en-us/articles/1260805176849).To access the Smartling APIs, you'll first need to authenticate with youruser identifier and user secret. An access token is returned that can beattached to the header of any API request. A refresh token is also returned.To obtain your [user identifier and user secret](https://help.smartling.com/hc/en-us/articles/115004187694),log in to Smartling.com and go to **API > Create Token**. Authenticating is assimple as calling the `/api.smartling.com/auth-api/v2/authenticate` withyour `userIdentifier` and `userSecret`. The access token returned is validfor 5-minutes, and is used in the header of all subsequent requests.**Example for generating your access token:**```bashcurl -X POST https://api.smartling.com/auth-api/v2/authenticate -H 'content-type: application/json' -d '{"userIdentifier": "userIdasdklj4348dk34!", "userSecret": "userSecret34i34kkd5634f"}'``````{ "response": { "code": "SUCCESS", "data": { "accessToken": "eyJhbGciOiJSUzI1NiJ9.eyJqdGkiOasdlkjn", "refreshToken": "eyJhbGciOiJSUzI1NiJ9.eyJqdGkiOiJkMTdkMmEw", "expiresIn": 480, "refreshExpiresIn": 3660, "tokenType": "Bearer" } }}```**Example of using your access token to list all projects for your account:**```bashcurl -X GET -H "Authorization: Bearer {accessToken}" https://api.smartling.com/accounts-api/v2/accounts/{accountUid}/projects``````{ "response": { "code": "SUCCESS", "data": { "totalCount": 1, "items": [{ "projectId": "df324sdf5", "projectName": "iOS Strings files", "accountUid": "ab5f1939", "archived": false, "projectTypeCode": "APPLICATION_RESOURCES", "sourceLocaleId": "en", "sourceLocaleDescription": "English" } ] } }}```

Smartling Authentication API is one of 19 APIs that Smartling publishes on the APIs.io network, described by a machine-readable OpenAPI specification.

Tagged areas include Authentication. The published artifact set on APIs.io includes an OpenAPI specification.

This API exposes 2 operations across 2 paths, and defines 10 schemas. It is described by OpenAPI 3.2.0, at version 2.0.0.

Requests are made against a single base URL, https://api.smartling.com.

2 operations 2 paths 10 schemas 2 POST

Metadata

The identity and technical contract details declared by the specification.

Specification
OpenAPI 3.2.0
API Version
2.0.0
Base URL
https://api.smartling.com
Terms of Service
Resource Areas
1

Paths & Operations 2

Across 2 paths, the API surfaces 2 operations — 2 POST. Each is listed below with its method, path, parameters, and response codes.

Authentication 2

Smartling uses OAuth2 for [authentication](https://help.smartling.com/hc/en-us/articles/1260805176849). To access the Smartling APIs, you'll first need to authenticate with your u…

POST
/auth-api/v2/authenticate
Authenticate
authenticate body → 200400401429500
POST
/auth-api/v2/authenticate/refresh
Refresh access token
refreshAccessToken body → 200400401429500

Schemas 10

The contract defines 10 schemas that model the data the API accepts and returns. The most detailed are Authentication (5 properties), Error (3 properties), AuthenticationRequest (2 properties), Error401Response (1 property). Each schema is shown below with its type and property counts.

Error400Response
object
1 property 1 required
AuthenticationRefreshRequest
object
1 property 1 required
AuthenticationResponse
object
1 property 1 required
SuccessResponse
object
1 property 1 required
Error429Response
object
1 property 1 required
Error
object
3 properties 2 required
Error401Response
object
1 property 1 required
AuthenticationRequest
object
2 properties 2 required
Error500Response
object
1 property 1 required
Authentication
object
5 properties 2 required

Specification

The full machine-readable OpenAPI contract behind this narrative.

Source

smartling-authentication-api-openapi.yml Raw ↑

Other APIs Smartling publishes across the network.

Smartling REST API
Smartling Account & Projects API
Smartling Attachments API
Smartling Content Search API
Smartling Context API
Smartling Estimates API
Smartling Files API
Smartling GDN url management API
Smartling Jobs API
Smartling Language Detection API
Smartling Locales API
Smartling Machine Translation (MT) API
Where this information came from

This is an independent, third-party profile of Smartling Authentication API, published by API Evangelist. We do not operate, host, resell, or support these APIs, and we are not affiliated with or endorsed by the company unless stated above. Everything here is built from publicly available information — the company's own site, developer portal, documentation, public repositories, and the specifications it publishes for public use. Nothing is obtained by breaching a system, defeating an access control, or using credentials.

The Kin Score and Agent Readiness rating are independently calculated assessments of a company's public API artifacts, scored against a published rubric. They are not certifications, endorsements, security assessments, or audits.

Corrections, re-scores, and removal are free — no partnership or purchase required, and you do not need to justify the request. A removed company is recorded as unrated, never scored zero for having asked. Acknowledgement within one business day; removal within two.

info@apievangelist.com · Read the full data-sourcing policy →
On a security or compliance team? Put security in the subject line and you will get a person, not a form — we will tell you exactly which public URLs this profile was built from.