Enviornments

Lithic API Enviorments

API Endpoints

Lithic provides two environments for development and production use:

EnvironmentBase URLDescription
Sandboxhttps://sandbox.lithic.com/v1Use this environment for testing and development. No real money or card transactions occur here.
Productionhttps://api.lithic.com/v1Use this environment for live card programs with real transactions and financial activity.

Authentication

All API requests must include your API key in the Authorization header using HTTP Basic Authentication:

Authorization: Basic {api_key}

You can also pass the API key directly as the username with no password:

curl https://sandbox.lithic.com/v1/cards \
  -u {your_api_key}:

Or include the full Authorization header:

curl https://sandbox.lithic.com/v1/cards \
  -H "Authorization: {your_api_key}"