v1
latestOpenAPI 3.0.0Proprietary2026-07-26316155742.7 KBTranslations
Search translations
Search translations for the given project. Provides the same search interface as translations#index but allows POST requests to avoid limitations imposed by GET requests. If you want to download all translations for one locale we recommend to use the locales#download endpoint.
post/projects/{project_id}/translations/search
Path parameters
project_idstring required
Project ID
Query parameters
pageinteger
Page number
per_pageinteger
Limit on the number of objects to be returned, between 1 and 100. 25 by default
Headers
X-PhraseApp-OTPstring
Two-Factor-Authentication token (optional)
Request body
Example request
{
"branch": "my-feature-branch",
"sort": "updated_at",
"order": "desc",
"q": "PhraseApp*%20unverified:true%20excluded:true%20tags:feature,center"
}Response
OK
Example response
[
{
"id": "abcd1234cdef1234abcd1234cdef1234",
"content": "My translation",
"unverified": false,
"excluded": false,
"plural_suffix": "",
"key": {
"id": "abcd1234cdef1234abcd1234cdef1234",
"name": "home.index.headline",
"plural": false,
"use_ordinal_rules": false
},
"locale": {
"id": "abcd1234cdef1234abcd1234cdef1234",
"name": "de",
"code": "de-DE"
},
"placeholders": [
"%{count}"
],
"state": "translated",
"created_at": "2015-01-28T09:52:53Z",
"updated_at": "2015-01-28T09:52:53Z"
}
]