API Documentation

Integrate your applications with NiceHatCRM

Getting Started with the NiceHatCRM API

Our RESTful API allows you to integrate NiceHatCRM with your existing systems and build custom applications.

The NiceHatCRM API uses standard HTTP methods and returns JSON responses. All requests require authentication using an API key, which you can generate in your account settings.

Base URL

https://api.nicehatcrm.com/v1

Authentication

All API requests require authentication using an API key. You can include your API key in the request headers:

Authorization: Bearer YOUR_API_KEY
Generating an API Key
  1. Log in to your NiceHatCRM account
  2. Navigate to Settings > API Keys
  3. Click "Generate New API Key"
  4. Provide a name for your key and select the appropriate permissions
  5. Copy your API key (it will only be shown once)
Security Note

Keep your API key secure and never share it publicly. If you believe your key has been compromised, revoke it immediately and generate a new one.

Rate Limits

To ensure the stability of our API, we enforce rate limits on all requests:

Plan Rate Limit Burst Limit
Basic 100 requests per minute 150 requests
Premium 500 requests per minute 750 requests
Enterprise 1,000 requests per minute 1,500 requests

Rate limit information is included in the response headers:

X-RateLimit-Limit: 100
X-RateLimit-Remaining: 95
X-RateLimit-Reset: 1617304800

API Endpoints

Contacts

GET
/contacts

Retrieve a list of contacts.

View Documentation
GET
/contacts/{id}

Retrieve a specific contact by ID.

View Documentation
POST
/contacts

Create a new contact.

View Documentation
PUT
/contacts/{id}

Update an existing contact.

View Documentation
DELETE
/contacts/{id}

Delete a contact.

View Documentation

Organizations

GET
/organizations

Retrieve a list of organizations.

View Documentation
GET
/organizations/{id}

Retrieve a specific organization by ID.

View Documentation
POST
/organizations

Create a new organization.

View Documentation
PUT
/organizations/{id}

Update an existing organization.

View Documentation
DELETE
/organizations/{id}

Delete an organization.

View Documentation

Deals

GET
/deals

Retrieve a list of deals.

View Documentation
GET
/deals/{id}

Retrieve a specific deal by ID.

View Documentation
POST
/deals

Create a new deal.

View Documentation
PUT
/deals/{id}

Update an existing deal.

View Documentation
DELETE
/deals/{id}

Delete a deal.

View Documentation

Error Handling

The API uses standard HTTP status codes to indicate the success or failure of a request:

Code Description
200 OK - The request was successful
201 Created - The resource was successfully created
400 Bad Request - The request was invalid or cannot be served
401 Unauthorized - Authentication is required or has failed
403 Forbidden - The server understood the request but refuses to authorize it
404 Not Found - The requested resource could not be found
429 Too Many Requests - Rate limit exceeded
500 Internal Server Error - Something went wrong on our end

Error responses include a JSON object with details about the error:

{
  "error": {
    "code": "validation_error",
    "message": "The request was invalid",
    "details": [
      {
        "field": "email",
        "message": "Invalid email format"
      }
    ]
  }
}

API Reference

API Version

Current version: v1

Need Help?

Our developer support team is here to help you integrate with NiceHatCRM.

Contact Developer Support