Insightly Contacts API
The Contacts API from Insightly — 3 operation(s) for contacts.
The Contacts API from Insightly — 3 operation(s) for contacts.
Every API here is available over the APIs.io API and to AI agents over MCP.
One button, every client — Claude, Cursor, VS Code and the rest.
https://apis.io/mcp
find_apisBrowse and filter every API in the catalog.get_api_artifactsOne API's artifacts, grouped by type.get_openapiThe primary OpenAPI for this API.find_similar_apisAPIs that look like this one.apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.resolveTurn a domain, URL or GitHub org into the provider it belongs to.find_cohortsEvery scored population of providers in the catalog.curl "https://apis.io/api/v1/apis/insightly-contacts-api"
curl "https://apis.io/api/v1/apis?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.
A second provider on the same verified email joins the account you already have.
openapi: 3.2.0
info:
title: Insightly CRM Contacts API
description: 'Insightly CRM REST API v3.1. Supports CRUD over Contacts, Organizations,
Opportunities, Leads, Projects, Products, Quotations, and more. Authentication
is HTTP Basic with a Base64-encoded API key as the username.
'
version: '3.1'
contact:
name: Insightly API Help
url: https://api.insightly.com/v3.1/Help
servers:
- url: https://api.{pod}.insightly.com/v3.1
description: Pod-specific base URL (your pod is shown in User Settings under API Key)
variables:
pod:
default: na1
security:
- BasicAuth: []
tags:
- name: Contacts
paths:
/Contacts:
get:
summary: List contacts
operationId: listContacts
parameters:
- in: query
name: top
schema:
type: integer
- in: query
name: skip
schema:
type: integer
responses:
'200':
description: Array of contacts
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/Contact'
tags:
- Contacts
post:
summary: Create a contact
operationId: createContact
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/Contact'
responses:
'201':
description: Created contact
content:
application/json:
schema:
$ref: '#/components/schemas/Contact'
tags:
- Contacts
/Contacts/{id}:
parameters:
- in: path
name: id
required: true
schema:
type: integer
format: int64
get:
summary: Get a contact
operationId: getContact
responses:
'200':
description: Contact
content:
application/json:
schema:
$ref: '#/components/schemas/Contact'
tags:
- Contacts
put:
summary: Update a contact
operationId: updateContact
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/Contact'
responses:
'200':
description: Updated contact
content:
application/json:
schema:
$ref: '#/components/schemas/Contact'
tags:
- Contacts
delete:
summary: Delete a contact
operationId: deleteContact
responses:
'202':
description: Deleted
tags:
- Contacts
/Contacts/Search:
get:
summary: Search contacts by field
operationId: searchContacts
parameters:
- in: query
name: field_name
schema:
type: string
- in: query
name: field_value
schema:
type: string
responses:
'200':
description: Search results
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/Contact'
tags:
- Contacts
components:
schemas:
Contact:
type: object
properties:
CONTACT_ID:
type: integer
format: int64
FIRST_NAME:
type: string
LAST_NAME:
type: string
EMAIL_ADDRESS:
type: string
format: email
PHONE:
type: string
DATE_CREATED_UTC:
type: string
format: date-time
DATE_UPDATED_UTC:
type: string
format: date-time
securitySchemes:
BasicAuth:
type: http
scheme: basic
description: 'Username is the Base64-encoded API key; password is left blank.
Example header: Authorization: Basic <base64(apiKey:)>
'