### Matecat API - Projects Source: https://www.matecat.com/api/docs/index This section details the API endpoints related to managing translation projects, including creation, status checks, and retrieval of project details. ```APIDOC ## Projects ### Description Endpoints for managing translation projects. You can create new projects, retrieve project details, and monitor their progress. ### Endpoints - **POST /projects**: Create a new translation project. - **GET /projects/{projectId}**: Retrieve details for a specific project. - **GET /projects**: Get a list of all projects. ``` -------------------------------- ### Matecat API - Authentication Source: https://www.matecat.com/api/docs/index All API requests require authentication. Include your API key and secret in the `x-matecat-key` header, formatted as `{APIkey}-{APIsecret}`. ```APIDOC ## Authentication ### Description To authenticate your API requests, include the `x-matecat-key` header in your request. The value of this header should be your API credentials formatted as `{APIkey}-{APIsecret}`. ### Header - **x-matecat-key** (string) - Required - Your API key and secret, separated by a hyphen. ``` -------------------------------- ### Matecat API - Jobs Source: https://www.matecat.com/api/docs/index Manage individual translation jobs within projects. This includes assigning translators, tracking progress, and retrieving job-specific information. ```APIDOC ## Jobs ### Description Endpoints for managing translation jobs. These jobs are the individual units of work within a project. ### Endpoints - **POST /projects/{projectId}/jobs**: Create a new job within a project. - **GET /jobs/{jobId}**: Retrieve details for a specific job. - **GET /projects/{projectId}/jobs**: Get all jobs associated with a project. ``` -------------------------------- ### Matecat API - Quality Reports Source: https://www.matecat.com/api/docs/index Generate and retrieve quality reports for translation projects and jobs to assess translation quality. ```APIDOC ## Quality Reports ### Description Endpoints for generating and retrieving quality reports to evaluate translation quality. ### Endpoints - **POST /quality-reports**: Generate a new quality report. - **GET /quality-reports/{reportId}**: Retrieve a specific quality report. ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.