ProZ.com global directory of translation services
The translation workplace
Ideas

GET: /kudoz/:k_id/translations

Get a collection of suggested translations for a given KudoZ record.

Required authorization scope

When using OAuth2 access tokens, the kudoz.read or kudoz.all scope is required to get KudoZ translations. See scopes in the authentication guide for information about how to request this scope of authorization.

Parameters

None.

Example request

curl -H "Authorization: Bearer {OAUTH2_ACCESS_TOKEN}" https://api.proz.com/v2/kudoz/123/translations

Response

Returns a collection of KudoZ translations.

{
    "_links": {
        "self": {
            "href": "https://api.proz.com/v2/kudoz/123/translations"
        }
    },
    "translations": [
        {
  "id": 3467,
  "self_link": "https://api.proz.com/v2/kudoz/123/translations/3467",
  "kudoz_record_id": 123,
  "kudoz_record_link": "https://api.proz.com/v2/kudoz/123",
  "translator": "https://api.proz.com/v2/users/32a9a4d0-cb6e-463f-a0ab-63d0a0418bc7",
  "time_posted": "2016-02-20T22:38:32+00:00",
  "time_updated": "2016-02-21T09:17:21+00:00",
  "confidence": 4,
  "source_term": "over-proportionality in systemic exposure",
  "translated_term": "over-proportionnalité de l'exposition systémique",
  "language": "fra",
  "explanation": "J'ai répondu pour donner des idées à d'autres ... en tendant des perches... s'agissant d'un plan de financement. Le contexte est insuffisant compte tenu du type de question. Proportionalité par rapport à quoi? J'ai l'impression que la réponse vient ultérieurement ... dans la phrase suivante",
  "reference_urls": [
    "http://example.com/1",
    "http://example.com/2"
  ],
  "example_sentences": [
    "Here's an example of the term used in a sentence."
  ],
  "definition": null,
  "notify_of_peer_review": true,
  "selected": false,
  "selection_comment": null,
  "points_awarded": 0,
  "auto_selected": false,
  "declined": false,
  "hidden": false,
  "hide_reason": null,
  "peer_review_summary": {
    "agrees": 5,
    "disagrees": 1,
    "neutral": 2
  }
}    ]
}