Retrieve All Projects
Get a paginated list of all projects with optional search and sorting functionality
Retrieve a paginated list of all projects associated with your account. This endpoint supports various query parameters for pagination, sorting, and searching through your projects.
Authorizations
This endpoint requires API key authentication. Include your API key in the request header:
- Header name:
X-Api-Key
- Header value: Your API key from the Ollang dashboard
- Format:
X-Api-Key: your-api-key-here
You can obtain your API key from your Ollang dashboard.
Query Parameters
The page number to retrieve. Must be a positive integer starting from 1.
The number of items per page. Must be between 1 and 50.
The field to sort the results by. Common values include id
, name
,
createdAt
, sourceLanguage
.
The direction to sort the results. Must be either asc
(ascending) or desc
(descending).
A search term to filter projects by name or other searchable fields. The search is case-insensitive and supports partial matches.
Response
The response contains a paginated list of projects with metadata about the pagination.
Array of project objects containing detailed information about each project.
Pagination metadata providing information about the current page and total results.