Skip to content

Sales Layer REST APIs let external systems integrate with Sales Layer using standard HTTPS requests and JSON payloads.

This documentation is intended for technical teams that build and maintain integrations, and for business stakeholders who need to understand what each API enables.

Documentation structure

Use the static guides to understand integration concepts that change infrequently:

  • Authentication and access requirements
  • Base URL and endpoint path conventions
  • Required and optional HTTP headers
  • Rate limiting and operational constraints
  • Pagination, filtering, and sorting
  • Success and error response formats
  • Current limitations and recommended practices
  • Error handling and troubleshooting

Use the API reference for endpoint-level details generated from the OpenAPI specification:

  • Available operations
  • Request parameters
  • Request and response schemas
  • Status codes
  • Examples

Current API reference

The current reference published in this project is:

The DAM REST API provides operations for managing image resources in Sales Layer. The Catalog REST API provides operations for catalog resources such as products, variants, categories, attribute sets, custom entities, metadata, and changelogs.

Base URL

The current API base URL is:

https://api2.saleslayer.com

First request

Use a valid API key in the X-API-KEY header.

curl -X GET 'https://api2.saleslayer.com/dam/image?$top=10' \
  -H 'X-API-KEY: YOUR_API_KEY'

This request returns up to 10 image records when the API key has access to the DAM API.

Next steps