Base URL
Every API request must target the versioned base URL over HTTPS. Plain HTTP connections are rejected. All endpoints documented in this reference are relative to this base.The Nomiq V1 API has a backward compatibility guarantee. New fields may be added to response objects, and new optional request parameters may be introduced, but existing field names, types, and endpoint paths will not change or be removed within the V1 namespace. Breaking changes will only ever appear under a new
/v2 prefix, with a minimum six-month migration window announced in advance.REST Conventions
The Nomiq API follows resource-oriented URL design. The primary conventions are:GET— Retrieve a resource or a paginated list of resources. GET requests never modify state.POST— Create a new resource or trigger an action (such as brand generation).PATCH— Partially update an existing resource. Only the fields you include in the request body are modified.DELETE— Permanently delete a resource. Deleted resources cannot be recovered.
POST and PATCH requests must be JSON-encoded with a Content-Type: application/json header. All response bodies are JSON-encoded regardless of the HTTP method.
Authentication
Every request to the Nomiq API requires a valid API key passed as a Bearer token in theAuthorization header. Requests without a valid key return 401 Unauthorized.
Pagination
All list endpoints (for example,GET /v1/projects and GET /v1/brands) use cursor-based pagination. This approach is more reliable than offset-based pagination for large, frequently updated datasets because it maintains a stable position in the list even when items are added or removed between requests.
A paginated response always includes the following envelope:
has_more is false, you have retrieved the final page. To fetch the next page, pass the value of next_cursor as the starting_after parameter in your next request.
Idempotency
ForPOST requests that create or mutate resources, you can attach an Idempotency-Key header containing a unique string (we recommend a UUID v4). If a request fails due to a network timeout or a transient server error, you can safely replay it with the same Idempotency-Key — Nomiq will return the result of the original request rather than executing the operation a second time.
Idempotency keys are valid for 24 hours. After that window, reusing a key is treated as a new request.
Standard Response Structure
Successful single-resource responses return the resource object directly at the top level:type field categorizes the error broadly (invalid_request_error, authentication_error, rate_limit_error, api_error), code gives you a machine-readable identifier for programmatic handling, and message provides a human-readable explanation suitable for internal logging.
Next Steps
Projects API
Create and manage Project containers — the foundational resource that scopes all brand generation work.
Generation API
Trigger asynchronous AI brand generation and retrieve completed SVG, color, and font assets.