> For the complete documentation index, see [llms.txt](https://docs.adaptria.locaria.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.adaptria.locaria.com/internal-api/reference/target-markets.md).

# 🎯 Target Markets

### Target Markets

Target markets represent geographical regions or countries for localization projects.

#### What are Target Markets?

Target markets help Adaptria:

* Assign appropriate regional specialists
* Apply region-specific style guides
* Consider cultural nuances in translation

#### Using Target Markets in RFQs

When creating an RFQ with NON\_LINGUISTICS services (video adaptation, creative services), you'll need to specify target market IDs.

Get available target markets from the endpoints below.

## 🎯 Get Available Target Markets

> \## Get Target Markets for Localization\
> \
> Retrieve the list of target markets (regions/countries) available for your localization projects.\
> \
> \### What are Target Markets?\
> \
> Target markets represent the geographical regions or countries where your localized content will be used. This helps Adaptria:\
> \- Assign appropriate regional specialists\
> \- Apply region-specific style guides\
> \- Consider cultural nuances in translation\
> \
> \### Using Target Markets in RFQs\
> \
> When creating an RFQ, you can optionally specify target markets using their IDs:\
> \
> \`\`\`json\
> {\
> &#x20; "targetMarkets": \["uuid-for-germany", "uuid-for-france"]\
> }\
> \`\`\`\
> \
> \### Common Target Markets\
> \
> \| Country Code | Name |\
> \|--------------|------|\
> \| DE | Germany |\
> \| FR | France |\
> \| ES | Spain |\
> \| GB | United Kingdom |\
> \| US | United States |\
> \| JP | Japan |\
> \| CN | China |

````json
{"openapi":"3.1.0","info":{"title":"Adaptria Public API: Connector","version":"1.0.0"},"tags":[{"name":"🎯 Target Markets","description":"## Target Markets\n\nTarget markets represent geographical regions or countries for localization projects.\n\n### What are Target Markets?\n\nTarget markets help Adaptria:\n- Assign appropriate regional specialists\n- Apply region-specific style guides\n- Consider cultural nuances in translation\n\n### Using Target Markets in RFQs\n\nWhen creating an RFQ with NON_LINGUISTICS services (video adaptation, creative services), you'll need to specify target market IDs.\n\nGet available target markets from the endpoints below.\n"}],"servers":[{"url":"https://api.adaptria.locaria.com","description":"Production Environment"}],"security":[{"apiKeyAuth":[]},{"bearerAuth":[]}],"components":{"securitySchemes":{"apiKeyAuth":{"type":"apiKey","in":"header","name":"Api-key","description":"## API Key Authentication\n\nStatic API key obtained from the Adaptria Portal or via `POST /api/credentials/api-keys`.\n\n**How to authenticate**:\n1. Generate an API key from the Adaptria Portal (Settings → API Keys) or ask your admin\n2. Include the key in all requests using the `Api-key` header\n\n**Key format**: `lla_live_<32-character-string>`\n\n**No token exchange needed** — the key is used directly in every request. Revoke or rotate keys from the portal."},"bearerAuth":{"type":"http","scheme":"bearer","bearerFormat":"JWT","description":"## Auth0 Bearer Token\n\nFor first-party clients that already authenticate against Auth0, send the JWT in\nthe `Authorisation` header as `Bearer <token>`."}},"schemas":{"GetTargetMarketsResponse":{"type":"object","properties":{"success":{"type":"boolean","enum":[true]},"data":{"type":"array","items":{"$ref":"#/components/schemas/PublicTargetMarket"},"description":"List of target markets available to your company"}},"required":["success","data"]},"PublicTargetMarket":{"type":"object","properties":{"id":{"type":"string","format":"uuid","description":"Unique identifier for the target market"},"name":{"type":"string","description":"Human-readable name of the target market/region"},"countryCode":{"type":"string","description":"ISO 3166-1 alpha-2 country code"}},"required":["id","name","countryCode"]}}},"paths":{"/api/public/v1/client/target-markets":{"get":{"summary":"🎯 Get Available Target Markets","description":"## Get Target Markets for Localization\n\nRetrieve the list of target markets (regions/countries) available for your localization projects.\n\n### What are Target Markets?\n\nTarget markets represent the geographical regions or countries where your localized content will be used. This helps Adaptria:\n- Assign appropriate regional specialists\n- Apply region-specific style guides\n- Consider cultural nuances in translation\n\n### Using Target Markets in RFQs\n\nWhen creating an RFQ, you can optionally specify target markets using their IDs:\n\n```json\n{\n  \"targetMarkets\": [\"uuid-for-germany\", \"uuid-for-france\"]\n}\n```\n\n### Common Target Markets\n\n| Country Code | Name |\n|--------------|------|\n| DE | Germany |\n| FR | France |\n| ES | Spain |\n| GB | United Kingdom |\n| US | United States |\n| JP | Japan |\n| CN | China |","tags":["🎯 Target Markets"],"parameters":[{"name":"search","in":"query","required":false,"schema":{"type":"string"},"description":"Filter target markets by name or country code"},{"name":"companyId","in":"query","required":true,"schema":{"type":"string","format":"uuid"},"description":"Company ID to filter target markets. Required to scope results to a specific company."}],"responses":{"200":{"description":"Target markets retrieved successfully","content":{"application/json":{"schema":{"$ref":"#/components/schemas/GetTargetMarketsResponse"}}}},"401":{"description":"Authentication required"},"403":{"description":"Access denied"}}}}}}
````
