Nimble Contacts Pipelines API

Contact pipelines — the lead-progression surface for contacts, distinct from deal pipelines. 8 operation(s).

Operations 1

GET /api/v1/contacts/pipelines List contacts pipelines #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • 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.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/nimble-contacts-pipelines-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

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 Specification

nimble-contacts-pipelines-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Nimble Contacts Pipelines API
  description: Nimble CRM Contacts Pipelines operations. Split by tag from the OpenAPI Nimble publishes at https://www.nimble.com/developers/docs/ (embedded Redoc spec). Base host https://app.nimble.com.
  version: v1
servers:
- url: https://app.nimble.com
security:
- ApiKey: []
tags:
- name: Contacts Pipelines
paths:
  /api/v1/contacts/pipelines:
    get:
      description: Returns a list pipelines available to view for the requesting user
      operationId: list-available-contacts-pipelines
      summary: List contacts pipelines
      tags:
      - Contacts Pipelines
      responses:
        '200':
          content:
            application/json:
              schema:
                properties:
                  pipelines:
                    items:
                      $ref: '#/components/schemas/Contacts.LeadsPipeline'
                    type: array
                required:
                - pipelines
                type: object
          description: ''
components:
  schemas:
    Contacts.LeadLostReason:
      type: object
      properties:
        id:
          type: string
        text:
          type: string
    Contacts.LeadsPipeline:
      properties:
        archived_at:
          type:
          - string
          - 'null'
        color:
          type: string
        created:
          type: string
        fields:
          type: array
          items:
            type: object
            properties:
              column_id:
                type: string
              enabled:
                type: boolean
            required:
            - column_id
            - enabled
        creator:
          $ref: '#/components/schemas/Accounts.ShortUserInfo'
        description:
          type:
          - string
          - 'null'
        name:
          type: string
        pipeline_id:
          type: string
        stages:
          items:
            $ref: '#/components/schemas/Contacts.LeadStage'
          type: array
        updated:
          type: string
        lost_reasons:
          description: a list with possible lost reasons that can be specified for a lost lead
          type: array
          items:
            $ref: '#/components/schemas/Contacts.LeadLostReason'
      required:
      - pipeline_id
      - creator
      - name
      - description
      - created
      - updated
      - archived_at
      - stages
      - color
      - lost_reasons
      type: object
    Accounts.ShortUserInfo:
      properties:
        avatar_url:
          type: string
        email:
          type: string
        is_active:
          type: boolean
        name:
          type: string
        user_id:
          type: string
      required:
      - user_id
      - name
      - email
      - avatar_url
      - is_active
      type: object
    Contacts.LeadStage:
      properties:
        archived_at:
          type:
          - string
          - 'null'
        created:
          type: string
        creator:
          $ref: '#/components/schemas/Accounts.ShortUserInfo'
        days_limit:
          type:
          - number
          - 'null'
        description:
          type:
          - string
          - 'null'
        name:
          type: string
        pipeline_id:
          type: string
        position:
          type: number
        role:
          $ref: '#/components/schemas/Contacts.StageRole'
        stage_id:
          type: string
        updated:
          type: string
      required:
      - stage_id
      - pipeline_id
      - creator
      - name
      - description
      - created
      - updated
      - archived_at
      - position
      - days_limit
      - role
      type: object
    Contacts.StageRole:
      properties:
        is_final:
          type: boolean
        name:
          type: string
      required:
      - name
      - is_final
      type: object
  securitySchemes:
    ApiKey:
      type: apiKey
      in: header
      name: X-Nimble-Token