Skip to main content
GET
/
api
/
public
/
ai-instructions
/
{lang}
Get AI instructions for a language
curl --request GET \
  --url https://app.prismy.io/api/public/ai-instructions/{lang} \
  --header 'Authorization: Bearer <token>'
{
  "language": "fr-FR",
  "orgDescription": "Prismy is a translation management platform for software teams.",
  "instructions": [
    {
      "id": 42,
      "prompt": "Use 'vous' instead of 'tu' to maintain a professional tone.",
      "source": "github",
      "repository": "my-repo",
      "bundle": "dashboard",
      "bundlePattern": null
    }
  ]
}

Authorizations

Authorization
string
header
required

API token from your organization settings

Path Parameters

lang
string
required

Language code (e.g., en-US, fr-FR, es-ES)

Response

AI instructions retrieved successfully

language
string

The resolved language code

Example:

"fr-FR"

orgDescription
string

The organization description providing context about your product

Example:

"Prismy is a translation management platform for software teams."

instructions
object[]