# General Translation Platform: Get Project information URL: https://generaltranslation.com/en-US/docs/platform/openapi/reference/project/project-info.mdx --- title: "Get Project information" description: "Read the authenticated Project's name, Organization ID, locale settings, and auto-approval setting. API reference for Get Project information." method: GET full: true _openapi: method: GET route: /v2/project/info/{projectId} toc: [] structuredData: headings: [] contents: - content: > Read the authenticated Project's name, Organization ID, locale settings, and auto-approval setting. --- ## `GET https://api.gtx.dev/v2/project/info/{projectId}` Read the authenticated Project's name, Organization ID, locale settings, and auto-approval setting. Authentication: send an API key as a bearer token in the `Authorization: Bearer ` header. ### Parameters - `gt-api-version` (header, "2025-01-01.v0" | "2025-11-03.v1" | "2026-02-18.v1" | "2026-03-06.v1", optional): API version. Defaults to the earliest supported version. Latest is `2026-03-06.v1`. - `gt-project-id` (header, string, optional): Target project ID. Required when authenticating with an organization API key. - `projectId` (path, string, required): Must match the authenticated project. ### Responses **200**: Project information. Response body (`application/json`, object): - `id` (string) - `name` (string) - `orgId` (string) - `defaultLocale` (string) - `currentLocales` (string[]) **400**: The request was invalid. Response body (`application/json`, object): - `error` (string): Human-readable error message. **401**: Missing or invalid API key. Response body (`application/json`, object): - `error` (string): Human-readable error message. **403**: The API key lacks the required permission, or the action is not allowed on the current plan. Response body (`application/json`, object): - `error` (string): Human-readable error message. **404**: The requested resource was not found. Response body (`application/json`, object): - `error` (string): Human-readable error message. The complete OpenAPI 3.1 spec is available at https://generaltranslation.com/openapi.yaml.