Build amazing applications with the Minnesota Business Directory API
Simple and intuitive REST endpoints
API key authentication with HTTPS
1000 requests per hour per key
Clean JSON responses with pagination
Sign up for a developer account to receive your API key. You'll need this key for all API requests.
Include your API key in the X-API-Key header:
curl -X GET "$API_BASE_URL/businesses" \
-H "X-API-Key: your_api_key_here" \
-H "Content-Type: application/json"All responses are in JSON format with consistent structure:
{
"success": true,
"data": [...],
"pagination": {
"page": 1,
"limit": 20,
"total": 100,
"totalPages": 5
}
}https://api.thisismn.com/api/v1Rate Limits
API requests are limited to 1000 per hour per API key. Rate limit information is included in response headers:
X-RateLimit-Limit: 1000
X-RateLimit-Remaining: 999
X-RateLimit-Reset: 1640995200Check out our resources or contact our developer support team.