-
- Translation help networkKudoZOther terminology resourcesLearn more: About terminology at ProZ.com
-
-
POST: /term-searchSearch the various ProZ.com terms/translations resources. Uses the same backend as ProZ.com Term Search. Parameters
The
POST: /term-search endpoint does not accept any URL or query string parameters, only JSON POST data as described below.
POST dataA JSON object containing a single required and several optional search parameters.
Example request
curl -H 'Content-Type: application/json' \
-H 'Authorization: Bearer OAUTH2_ACCESS_TOKEN' \
-d '{
"query": "burrito",
"disc_gens": [8],
"resources": ["kudoz", "kog"]
}' \
https://api.proz.com/v2/term-search
ResponseNested object containing one or more resource result sets, along with meta information for paging purposes: {
"term_search_result_set": [
{
"resource": "all",
"meta": {
"results_total": 4,
"result_start": 1,
"result_end": 4
},
"search_results": [
{
"id": "3936473",
"term_source": "cheese bean burrito",
"term_target": "burrito de queijo e feijão",
"term_source_highlight": "cheese bean <b>burrito</b>",
"term_target_highlight": "<b>burrito</b> de queijo e feijão",
"resource": "kudoz",
"language_pair": "eng_por",
"disc_gens": [
8
],
"disc_specs": [
28
],
"disc_other": [],
"web_url": "http://www.proz.com/kudoz/english_to_portuguese/cooking_culinary/3936473-cheese_bean_burrito.html",
"profile_id_source": 588374,
"profile_id_target": 1012486,
"profile_uuid_source": "61eb6ee4-fe39-4db5-aeb5-c16194cb860c",
"profile_uuid_target": "3574a7ea-3a4b-4305-bb03-3b31f2de77fc",
"kudoz_link": "https://api.proz.com/v2/kudoz/3936473"
},
{
"id": "3936473",
"term_source": "cheese bean burrito",
"term_target": "burrito de queijo e feijão",
"term_source_highlight": "cheese bean <b>burrito</b>",
"term_target_highlight": "<b>burrito</b> de queijo e feijão",
"resource": "kog",
"language_pair": "eng_por",
"disc_gens": [
8
],
"disc_specs": [
28
],
"disc_other": [],
"web_url": "http://www.proz.com/kudoz/english_to_portuguese/cooking_culinary/3936473-cheese_bean_burrito.html",
"profile_id_source": 588374,
"profile_id_target": 588374,
"profile_uuid_source": "61eb6ee4-fe39-4db5-aeb5-c16194cb860c",
"profile_uuid_target": "61eb6ee4-fe39-4db5-aeb5-c16194cb860c",
"kudoz_link": "https://api.proz.com/v2/kudoz/3936473"
},
{
"id": "204272",
"term_source": "Carlo is een ezeltje",
"term_target": "burrito, burro pequeño",
"term_source_highlight": "Carlo is een ezeltje",
"term_target_highlight": "<b>burrito</b>, burro pequeño",
"resource": "kudoz",
"language_pair": "nld_spa",
"disc_gens": [
8
],
"disc_specs": [],
"disc_other": [],
"web_url": "http://www.proz.com/kudoz/dutch_to_spanish/other/204272-carlo_is_een_ezeltje.html",
"profile_id_source": 11,
"profile_id_target": 10874,
"profile_uuid_source": null,
"profile_uuid_target": "1d7dda31-8634-4265-a1b0-9afd183e3224",
"kudoz_link": "https://api.proz.com/v2/kudoz/204272"
},
{
"id": "103519",
"term_source": "el burrito grande",
"term_target": "donkey, Mexican food",
"term_source_highlight": "el <b>burrito</b> grande",
"term_target_highlight": "donkey, Mexican food",
"resource": "kudoz",
"language_pair": "spa_eng",
"disc_gens": [
8
],
"disc_specs": [],
"disc_other": [],
"web_url": "http://www.proz.com/kudoz/spanish_to_english/other/103519-el_burrito_grande.html",
"profile_id_source": 24845,
"profile_id_target": 4229,
"profile_uuid_source": "59af0986-bb68-480e-bea1-74bec879253b",
"profile_uuid_target": "f6bc6fa3-b61a-4666-8fdd-edb6a4212877",
"kudoz_link": "https://api.proz.com/v2/kudoz/103519"
}
]
}
]
}
When the
[
{
"term_search_result_set": [
{
"resource": "all",
"meta": {
"results_total": 166,
"result_start": 1,
"result_end": 10
},
"search_results": [ ... ]
}
]
},
{
"term_search_result_set": [
{
"resource": "all",
"meta": {
"results_total": 136,
"result_start": 1,
"result_end": 10
},
"search_results": [ ... ]
}
]
},
{
"term_search_result_set": [
{
...
}
]
}
]
|