API Documentation
Learn how to integrate Logo Express into your applications using our REST API.
Introduction
Endpoints
Schemas
Authentication
The Logo Express API uses API keys to authenticate requests. You can view and manage your API keys in the Dashboard Settings.
Authentication to the API is performed via HTTP Basic Auth. Provide your API key as the basic auth username value. You do not need to provide a password.
Example Request
curl https://api.logoexpress.com/v1/projects \
-u lex_live_your_api_key:
Base URL
All API requests should be made to the following base URL:
https://api.logoexpress.com/v1
Projects
Endpoints for managing and retrieving your branding projects.
GET
/projects
Returns a list of your projects.
Query Parameters
| Name | Type | Description |
|---|---|---|
limit |
integer | Maximum number of projects to return. Default is 10. |
status |
string | Filter by project status (e.g., 'active', 'completed'). |
POST
/projects
Creates a new branding project.
Request Body
{
"name": "Summer Collection 2026",
"category": "Apparel",
"priority": "high",
"notes": "Need high-res vectors for screen printing."
}
Schemas
Project Object
| Attribute | Type | Description |
|---|---|---|
id |
string | Unique identifier for the project. |
name |
string | The name of the project. |
status |
string | Current status: active, on_hold, completed. |
created_at |
timestamp | Time at which the object was created. |