Skip to main content
GET
/
v1
/
translation
/
{translation_id}
--request GET 'https://api.beglaubigt.de/v1/translation/123e4567-e89b-12d3-a456-426614174000' \
--header 'Authorization: Bearer <token>'
{
  "response": {
    "result": "success",
    "message": "Translation fetched successfully.",
    "translation_id": "123e4567-e89b-12d3-a456-426614174000",
    "status": "pending",
    "translation_type": "certified",
    "certification_jurisdiction": "DE",
    "source_language": "de",
    "target_language": "en",
    "is_apostille_needed": true,
    "urgency": "priority",
    "documents": [
      {
        "id": "123e4567-e89b-12d3-a456-426614174001",
        "type": "original",
        "name": "birth_certificate.pdf",
        "pages": 2,
        "download_url": "https://app.beglaubigt.de/download?bucket=translation-documents&id=123e4567-e89b-12d3-a456-426614174001&token=a1H...To5"
      }
    ],
    "delivery_method": "express",
    "is_insurance_needed": false,
    "client_details": {
      "first_name": "John",
      "last_name": "Doe",
      "email": "john.doe@example.com",
      "phone": "+491701234567"
    },
    "delivery_address": {
      "person_type": "private",
      "first_name": "John",
      "last_name": "Doe",
      "street": "Hauptstraße 12",
      "additional": "Hinterhaus, 2. OG",
      "city": "Berlin",
      "zip": "10115",
      "country": "DE"
    },
    "billing_address": {
      "person_type": "private",
      "first_name": "John",
      "last_name": "Doe",
      "street": "Hauptstraße 12",
      "city": "Berlin",
      "zip": "10115",
      "country": "DE"
    },
    "price": 85.50,
    "url": "[https://app.beglaubigt.de/cases/123e4567-e89b-12d3-a456-42661417400]",
    "client_reference": "PO-99821",
    "client_preferred_language": "de",
    "created_at": "2026-02-07T14:21:30.000Z"
  }
}

Documentation Index

Fetch the complete documentation index at: https://beglaubigt.de/docs/llms.txt

Use this file to discover all available pages before exploring further.

Authorization

To authenticate requests, include an Authorization header with a Bearer token: Authorization: Bearer <token> Example: Bearer sk-123e4567-e89b-12d3-a456-426614174000

Path Parameters

translation_id
string
required
The unique identifier of the translation case to retrieve.
Example: 123e4567-e89b-12d3-a456-426614174000

Response

result
string
Indicates the outcome of the request.
Possible values: success or error
message
string
A human-readable summary of the result.
Example: Translation fetched successfully.
translation_id
string
The unique identifier for the translation case in a UUID format.
Example123e4567-e89b-12d3-a456-426614174000
status
string
The current status of the translation process.
Possible values: draft, pending, completed, archive, feedback-requested or refund-needed
translation_type
string
The service type.
Possible values: standard or certified
certification_jurisdiction
string
The 2-letter ISO country code of the country where the certified translation is valid.
Example: DE
source_language
string
The ISO code of the language the original document is written in.
Example: de
target_language
string
The ISO code of the language the document should be translated into.
Example: en
is_apostille_needed
boolean
Indicates if a legal apostille was requested for the translated documents.\
urgency
string
The priority level of the request.
Possible values: standard, priority or express
documents
array
List of documents associated with this case.
delivery_method
string
The selected delivery method for the final documents.
Possible values: email, postal or express
is_insurance_needed
boolean
Indicates if order insurance was applied to the request.
client_details
object
Information about the requesting client.
delivery_address
object
The physical address where the documents will be shipped.
billing_address
object
The address used for invoicing. Follows the same structure as delivery_address.
price
number
The total price of the translation in EUR.
Example: 85.50
url
string
Direct dashboard link to the case.
Example: https://app.beglaubigt.de/cases/123e4567-e89b-12d3-a456-426614174000
client_reference
string
The custom reference provided during request creation.
Example: PO-99821
client_preferred_language
string
The ISO code for notification preferences.
Possible values: de, en, fr, es or it
created_at
string
ISO 8601 timestamp of translation creation.
Example: 2026-02-07T14:21:30.000Z
--request GET 'https://api.beglaubigt.de/v1/translation/123e4567-e89b-12d3-a456-426614174000' \
--header 'Authorization: Bearer <token>'
{
  "response": {
    "result": "success",
    "message": "Translation fetched successfully.",
    "translation_id": "123e4567-e89b-12d3-a456-426614174000",
    "status": "pending",
    "translation_type": "certified",
    "certification_jurisdiction": "DE",
    "source_language": "de",
    "target_language": "en",
    "is_apostille_needed": true,
    "urgency": "priority",
    "documents": [
      {
        "id": "123e4567-e89b-12d3-a456-426614174001",
        "type": "original",
        "name": "birth_certificate.pdf",
        "pages": 2,
        "download_url": "https://app.beglaubigt.de/download?bucket=translation-documents&id=123e4567-e89b-12d3-a456-426614174001&token=a1H...To5"
      }
    ],
    "delivery_method": "express",
    "is_insurance_needed": false,
    "client_details": {
      "first_name": "John",
      "last_name": "Doe",
      "email": "john.doe@example.com",
      "phone": "+491701234567"
    },
    "delivery_address": {
      "person_type": "private",
      "first_name": "John",
      "last_name": "Doe",
      "street": "Hauptstraße 12",
      "additional": "Hinterhaus, 2. OG",
      "city": "Berlin",
      "zip": "10115",
      "country": "DE"
    },
    "billing_address": {
      "person_type": "private",
      "first_name": "John",
      "last_name": "Doe",
      "street": "Hauptstraße 12",
      "city": "Berlin",
      "zip": "10115",
      "country": "DE"
    },
    "price": 85.50,
    "url": "[https://app.beglaubigt.de/cases/123e4567-e89b-12d3-a456-42661417400]",
    "client_reference": "PO-99821",
    "client_preferred_language": "de",
    "created_at": "2026-02-07T14:21:30.000Z"
  }
}