{
  "info": {
    "name": "Lev External API v2",
    "description": "Complete API collection for the Lev External API v2.\n\n## Setup\n1. Import this collection into Postman or Insomnia\n2. Set the `api_key` variable to your Lev API key (lev_sk_...)\n3. Start making requests\n\n## Authentication\nAll requests use Bearer token auth via the `{{api_key}}` variable.\n\n## Documentation\n- Full docs: https://lev.com/platform\n- OpenAPI spec: https://lev.com/platform/openapi.json\n- LLM reference: https://lev.com/platform/llms.txt",
    "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
  },
  "auth": {
    "type": "bearer",
    "bearer": [
      {
        "key": "token",
        "value": "{{api_key}}",
        "type": "string"
      }
    ]
  },
  "variable": [
    {
      "key": "base_url",
      "value": "https://api.levcapital.com",
      "type": "string",
      "description": "Lev API base URL"
    },
    {
      "key": "api_key",
      "value": "lev_sk_your_key_here",
      "type": "string",
      "description": "Your Lev API key"
    }
  ],
  "item": [
    {
      "name": "Authentication",
      "description": "API key validation",
      "item": [
        {
          "name": "Validate an API key (unauthenticated endpoint)",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "X-Origin-App",
                "value": "postman",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/external/v2/auth/validate-api-key",
              "protocol": "https",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "external",
                "v2",
                "auth",
                "validate-api-key"
              ]
            },
            "auth": {
              "type": "bearer",
              "bearer": [
                {
                  "key": "token",
                  "value": "{{api_key}}",
                  "type": "string"
                }
              ]
            },
            "description": "Validate an API key (unauthenticated endpoint)\nDocs: https://lev.com/platform/authentication"
          }
        }
      ]
    },
    {
      "name": "API Keys",
      "description": "Create, list, and revoke API keys",
      "item": [
        {
          "name": "Create a new API key for the authenticated user",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "X-Origin-App",
                "value": "postman",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/external/v2/api-keys",
              "protocol": "https",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "external",
                "v2",
                "api-keys"
              ]
            },
            "auth": {
              "type": "bearer",
              "bearer": [
                {
                  "key": "token",
                  "value": "{{api_key}}",
                  "type": "string"
                }
              ]
            },
            "description": "Create a new API key for the authenticated user\nDocs: https://lev.com/platform/api-keys",
            "body": {
              "mode": "raw",
              "raw": "{\n  \"label\": \"My API Key\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "List all API keys for the authenticated user",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "X-Origin-App",
                "value": "postman",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/external/v2/api-keys",
              "protocol": "https",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "external",
                "v2",
                "api-keys"
              ],
              "query": [
                {
                  "key": "limit",
                  "value": "",
                  "description": "Results per page (1–200, default 50)",
                  "disabled": true
                },
                {
                  "key": "offset",
                  "value": "",
                  "description": "Number of results to skip (default 0)",
                  "disabled": true
                }
              ]
            },
            "auth": {
              "type": "bearer",
              "bearer": [
                {
                  "key": "token",
                  "value": "{{api_key}}",
                  "type": "string"
                }
              ]
            },
            "description": "List all API keys for the authenticated user\nDocs: https://lev.com/platform/api-keys"
          }
        },
        {
          "name": "Permanently revoke an API key",
          "request": {
            "method": "DELETE",
            "header": [
              {
                "key": "X-Origin-App",
                "value": "postman",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/external/v2/api-keys/:key_id",
              "protocol": "https",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "external",
                "v2",
                "api-keys",
                ":key_id"
              ],
              "variable": [
                {
                  "key": "key_id",
                  "value": "",
                  "description": "key_id (required)"
                }
              ]
            },
            "auth": {
              "type": "bearer",
              "bearer": [
                {
                  "key": "token",
                  "value": "{{api_key}}",
                  "type": "string"
                }
              ]
            },
            "description": "Permanently revoke an API key\nDocs: https://lev.com/platform/api-keys"
          }
        }
      ]
    },
    {
      "name": "Deals",
      "description": "Deal lifecycle management",
      "item": [
        {
          "name": "List deals with pagination, filtering, and sorting",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "X-Origin-App",
                "value": "postman",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/external/v2/deals",
              "protocol": "https",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "external",
                "v2",
                "deals"
              ],
              "query": [
                {
                  "key": "limit",
                  "value": "",
                  "description": "Results per page (1–200, default 50)",
                  "disabled": true
                },
                {
                  "key": "cursor",
                  "value": "",
                  "description": "Cursor for next page (mutually exclusive with sort)",
                  "disabled": true
                },
                {
                  "key": "offset",
                  "value": "",
                  "description": "Offset for pagination (requires sort)",
                  "disabled": true
                },
                {
                  "key": "sort",
                  "value": "",
                  "description": "Sort fields: title, loan_amount, created_at, updated_at. Prefix with - for descending",
                  "disabled": true
                },
                {
                  "key": "fields",
                  "value": "",
                  "description": "Comma-separated fields to include (id always included)",
                  "disabled": true
                },
                {
                  "key": "include",
                  "value": "",
                  "description": "Sub-resources to embed: financials, properties, team",
                  "disabled": true
                },
                {
                  "key": "filter[loan_type]",
                  "value": "",
                  "description": "Filter by loan type (acquisition, refinance, etc.)",
                  "disabled": true
                },
                {
                  "key": "filter[transaction_type]",
                  "value": "",
                  "description": "Filter by transaction type",
                  "disabled": true
                },
                {
                  "key": "filter[business_plan]",
                  "value": "",
                  "description": "Filter by business plan",
                  "disabled": true
                },
                {
                  "key": "filter[loan_amount][gte]",
                  "value": "",
                  "description": "Minimum loan amount",
                  "disabled": true
                },
                {
                  "key": "filter[loan_amount][lte]",
                  "value": "",
                  "description": "Maximum loan amount",
                  "disabled": true
                },
                {
                  "key": "filter[created_at][gte]",
                  "value": "",
                  "description": "Created after (ISO 8601)",
                  "disabled": true
                },
                {
                  "key": "filter[created_at][lte]",
                  "value": "",
                  "description": "Created before (ISO 8601)",
                  "disabled": true
                }
              ]
            },
            "auth": {
              "type": "bearer",
              "bearer": [
                {
                  "key": "token",
                  "value": "{{api_key}}",
                  "type": "string"
                }
              ]
            },
            "description": "List deals with pagination, filtering, and sorting\nDocs: https://lev.com/platform/deals"
          }
        },
        {
          "name": "Create a new deal",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "X-Origin-App",
                "value": "postman",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/external/v2/deals",
              "protocol": "https",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "external",
                "v2",
                "deals"
              ]
            },
            "auth": {
              "type": "bearer",
              "bearer": [
                {
                  "key": "token",
                  "value": "{{api_key}}",
                  "type": "string"
                }
              ]
            },
            "description": "Create a new deal\nDocs: https://lev.com/platform/deals",
            "body": {
              "mode": "raw",
              "raw": "{\n  \"title\": \"Example Deal\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Get a single deal by ID",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "X-Origin-App",
                "value": "postman",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/external/v2/deals/:deal_id",
              "protocol": "https",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "external",
                "v2",
                "deals",
                ":deal_id"
              ],
              "query": [
                {
                  "key": "include",
                  "value": "",
                  "description": "Sub-resources to embed: financials, properties, team",
                  "disabled": true
                },
                {
                  "key": "fields",
                  "value": "",
                  "description": "Comma-separated fields to include",
                  "disabled": true
                }
              ],
              "variable": [
                {
                  "key": "deal_id",
                  "value": "",
                  "description": "deal_id (required)"
                }
              ]
            },
            "auth": {
              "type": "bearer",
              "bearer": [
                {
                  "key": "token",
                  "value": "{{api_key}}",
                  "type": "string"
                }
              ]
            },
            "description": "Get a single deal by ID\nDocs: https://lev.com/platform/deals"
          }
        },
        {
          "name": "Update a deal (partial update)",
          "request": {
            "method": "PATCH",
            "header": [
              {
                "key": "X-Origin-App",
                "value": "postman",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/external/v2/deals/:deal_id",
              "protocol": "https",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "external",
                "v2",
                "deals",
                ":deal_id"
              ],
              "variable": [
                {
                  "key": "deal_id",
                  "value": "",
                  "description": "deal_id (required)"
                }
              ]
            },
            "auth": {
              "type": "bearer",
              "bearer": [
                {
                  "key": "token",
                  "value": "{{api_key}}",
                  "type": "string"
                }
              ]
            },
            "description": "Update a deal (partial update)\nDocs: https://lev.com/platform/deals",
            "body": {
              "mode": "raw",
              "raw": "{}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Archive (soft-delete) a deal",
          "request": {
            "method": "DELETE",
            "header": [
              {
                "key": "X-Origin-App",
                "value": "postman",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/external/v2/deals/:deal_id",
              "protocol": "https",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "external",
                "v2",
                "deals",
                ":deal_id"
              ],
              "variable": [
                {
                  "key": "deal_id",
                  "value": "",
                  "description": "deal_id (required)"
                }
              ]
            },
            "auth": {
              "type": "bearer",
              "bearer": [
                {
                  "key": "token",
                  "value": "{{api_key}}",
                  "type": "string"
                }
              ]
            },
            "description": "Archive (soft-delete) a deal\nDocs: https://lev.com/platform/deals"
          }
        },
        {
          "name": "Get financial details for a deal",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "X-Origin-App",
                "value": "postman",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/external/v2/deals/:deal_id/financials",
              "protocol": "https",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "external",
                "v2",
                "deals",
                ":deal_id",
                "financials"
              ],
              "variable": [
                {
                  "key": "deal_id",
                  "value": "",
                  "description": "deal_id (required)"
                }
              ]
            },
            "auth": {
              "type": "bearer",
              "bearer": [
                {
                  "key": "token",
                  "value": "{{api_key}}",
                  "type": "string"
                }
              ]
            },
            "description": "Get financial details for a deal\nDocs: https://lev.com/platform/deal-financials"
          }
        },
        {
          "name": "List properties associated with a deal",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "X-Origin-App",
                "value": "postman",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/external/v2/deals/:deal_id/properties",
              "protocol": "https",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "external",
                "v2",
                "deals",
                ":deal_id",
                "properties"
              ],
              "variable": [
                {
                  "key": "deal_id",
                  "value": "",
                  "description": "deal_id (required)"
                }
              ]
            },
            "auth": {
              "type": "bearer",
              "bearer": [
                {
                  "key": "token",
                  "value": "{{api_key}}",
                  "type": "string"
                }
              ]
            },
            "description": "List properties associated with a deal\nDocs: https://lev.com/platform/deal-properties"
          }
        },
        {
          "name": "Move a deal to a pipeline stage",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "X-Origin-App",
                "value": "postman",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/external/v2/deals/:deal_id/pipeline",
              "protocol": "https",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "external",
                "v2",
                "deals",
                ":deal_id",
                "pipeline"
              ],
              "variable": [
                {
                  "key": "deal_id",
                  "value": "",
                  "description": "deal_id (required)"
                }
              ]
            },
            "auth": {
              "type": "bearer",
              "bearer": [
                {
                  "key": "token",
                  "value": "{{api_key}}",
                  "type": "string"
                }
              ]
            },
            "description": "Move a deal to a pipeline stage\nDocs: https://lev.com/platform/pipelines",
            "body": {
              "mode": "raw",
              "raw": "{\n  \"pipeline_id\": 1,\n  \"pipeline_status_id\": 1\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "List all team members assigned to a deal",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "X-Origin-App",
                "value": "postman",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/external/v2/deals/:deal_id/team",
              "protocol": "https",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "external",
                "v2",
                "deals",
                ":deal_id",
                "team"
              ],
              "variable": [
                {
                  "key": "deal_id",
                  "value": "",
                  "description": "deal_id (required)"
                }
              ]
            },
            "auth": {
              "type": "bearer",
              "bearer": [
                {
                  "key": "token",
                  "value": "{{api_key}}",
                  "type": "string"
                }
              ]
            },
            "description": "List all team members assigned to a deal\nDocs: https://lev.com/platform/deal-team"
          }
        },
        {
          "name": "List term sheets for a deal",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "X-Origin-App",
                "value": "postman",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/external/v2/deals/:deal_id/term-sheets",
              "protocol": "https",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "external",
                "v2",
                "deals",
                ":deal_id",
                "term-sheets"
              ],
              "query": [
                {
                  "key": "limit",
                  "value": "",
                  "description": "Results per page (1–200, default 50)",
                  "disabled": true
                },
                {
                  "key": "cursor",
                  "value": "",
                  "description": "Cursor for next page",
                  "disabled": true
                }
              ],
              "variable": [
                {
                  "key": "deal_id",
                  "value": "",
                  "description": "deal_id (required)"
                }
              ]
            },
            "auth": {
              "type": "bearer",
              "bearer": [
                {
                  "key": "token",
                  "value": "{{api_key}}",
                  "type": "string"
                }
              ]
            },
            "description": "List term sheets for a deal\nDocs: https://lev.com/platform/term-sheets"
          }
        },
        {
          "name": "Get a single term sheet",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "X-Origin-App",
                "value": "postman",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/external/v2/deals/:deal_id/term-sheets/:term_sheet_id",
              "protocol": "https",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "external",
                "v2",
                "deals",
                ":deal_id",
                "term-sheets",
                ":term_sheet_id"
              ],
              "variable": [
                {
                  "key": "deal_id",
                  "value": "",
                  "description": "deal_id (required)"
                },
                {
                  "key": "term_sheet_id",
                  "value": "",
                  "description": "term_sheet_id (required)"
                }
              ]
            },
            "auth": {
              "type": "bearer",
              "bearer": [
                {
                  "key": "token",
                  "value": "{{api_key}}",
                  "type": "string"
                }
              ]
            },
            "description": "Get a single term sheet\nDocs: https://lev.com/platform/term-sheets"
          }
        },
        {
          "name": "Get the authenticated user's profile, account, and platform details",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "X-Origin-App",
                "value": "postman",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/external/v2/me",
              "protocol": "https",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "external",
                "v2",
                "me"
              ]
            },
            "auth": {
              "type": "bearer",
              "bearer": [
                {
                  "key": "token",
                  "value": "{{api_key}}",
                  "type": "string"
                }
              ]
            },
            "description": "Get the authenticated user's profile, account, and platform details\nDocs: https://lev.com/platform/account-&-team"
          }
        },
        {
          "name": "Trigger an AI-powered lender search for a deal",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "X-Origin-App",
                "value": "postman",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/external/v2/deals/:deal_id/actions/search-lenders",
              "protocol": "https",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "external",
                "v2",
                "deals",
                ":deal_id",
                "actions",
                "search-lenders"
              ],
              "variable": [
                {
                  "key": "deal_id",
                  "value": "",
                  "description": "deal_id (required)"
                }
              ]
            },
            "auth": {
              "type": "bearer",
              "bearer": [
                {
                  "key": "token",
                  "value": "{{api_key}}",
                  "type": "string"
                }
              ]
            },
            "description": "Trigger an AI-powered lender search for a deal\nDocs: https://lev.com/platform/lender-search"
          }
        },
        {
          "name": "Get lender search results for a deal",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "X-Origin-App",
                "value": "postman",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/external/v2/deals/:deal_id/lender-search",
              "protocol": "https",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "external",
                "v2",
                "deals",
                ":deal_id",
                "lender-search"
              ],
              "query": [
                {
                  "key": "limit",
                  "value": "",
                  "description": "Results per page (default 50)",
                  "disabled": true
                },
                {
                  "key": "offset",
                  "value": "",
                  "description": "Offset for pagination",
                  "disabled": true
                }
              ],
              "variable": [
                {
                  "key": "deal_id",
                  "value": "",
                  "description": "deal_id (required)"
                }
              ]
            },
            "auth": {
              "type": "bearer",
              "bearer": [
                {
                  "key": "token",
                  "value": "{{api_key}}",
                  "type": "string"
                }
              ]
            },
            "description": "Get lender search results for a deal\nDocs: https://lev.com/platform/lender-search"
          }
        }
      ]
    },
    {
      "name": "Pipelines",
      "description": "Pipeline browsing and deal pipeline assignment",
      "item": [
        {
          "name": "List all pipelines available to your account",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "X-Origin-App",
                "value": "postman",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/external/v2/pipelines",
              "protocol": "https",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "external",
                "v2",
                "pipelines"
              ]
            },
            "auth": {
              "type": "bearer",
              "bearer": [
                {
                  "key": "token",
                  "value": "{{api_key}}",
                  "type": "string"
                }
              ]
            },
            "description": "List all pipelines available to your account\nDocs: https://lev.com/platform/pipelines"
          }
        },
        {
          "name": "Get a single pipeline with its statuses",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "X-Origin-App",
                "value": "postman",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/external/v2/pipelines/:pipeline_id",
              "protocol": "https",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "external",
                "v2",
                "pipelines",
                ":pipeline_id"
              ],
              "variable": [
                {
                  "key": "pipeline_id",
                  "value": "",
                  "description": "pipeline_id (required)"
                }
              ]
            },
            "auth": {
              "type": "bearer",
              "bearer": [
                {
                  "key": "token",
                  "value": "{{api_key}}",
                  "type": "string"
                }
              ]
            },
            "description": "Get a single pipeline with its statuses\nDocs: https://lev.com/platform/pipelines"
          }
        }
      ]
    },
    {
      "name": "Placements",
      "description": "Lender placements on deals",
      "item": [
        {
          "name": "List placements with pagination",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "X-Origin-App",
                "value": "postman",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/external/v2/placements",
              "protocol": "https",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "external",
                "v2",
                "placements"
              ],
              "query": [
                {
                  "key": "limit",
                  "value": "",
                  "description": "Results per page (1–200, default 50)",
                  "disabled": true
                },
                {
                  "key": "cursor",
                  "value": "",
                  "description": "Cursor for next page",
                  "disabled": true
                }
              ]
            },
            "auth": {
              "type": "bearer",
              "bearer": [
                {
                  "key": "token",
                  "value": "{{api_key}}",
                  "type": "string"
                }
              ]
            },
            "description": "List placements with pagination\nDocs: https://lev.com/platform/placements"
          }
        },
        {
          "name": "Get a single placement by ID",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "X-Origin-App",
                "value": "postman",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/external/v2/placements/:placement_id",
              "protocol": "https",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "external",
                "v2",
                "placements",
                ":placement_id"
              ],
              "variable": [
                {
                  "key": "placement_id",
                  "value": "",
                  "description": "placement_id (required)"
                }
              ]
            },
            "auth": {
              "type": "bearer",
              "bearer": [
                {
                  "key": "token",
                  "value": "{{api_key}}",
                  "type": "string"
                }
              ]
            },
            "description": "Get a single placement by ID\nDocs: https://lev.com/platform/placements"
          }
        }
      ]
    },
    {
      "name": "Contacts",
      "description": "CRM contact management",
      "item": [
        {
          "name": "List contacts with pagination",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "X-Origin-App",
                "value": "postman",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/external/v2/contacts",
              "protocol": "https",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "external",
                "v2",
                "contacts"
              ],
              "query": [
                {
                  "key": "limit",
                  "value": "",
                  "description": "Results per page (1–200, default 50)",
                  "disabled": true
                },
                {
                  "key": "cursor",
                  "value": "",
                  "description": "Cursor for next page",
                  "disabled": true
                },
                {
                  "key": "fields",
                  "value": "",
                  "description": "Comma-separated fields to include",
                  "disabled": true
                }
              ]
            },
            "auth": {
              "type": "bearer",
              "bearer": [
                {
                  "key": "token",
                  "value": "{{api_key}}",
                  "type": "string"
                }
              ]
            },
            "description": "List contacts with pagination\nDocs: https://lev.com/platform/contacts"
          }
        },
        {
          "name": "Create a new contact",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "X-Origin-App",
                "value": "postman",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/external/v2/contacts",
              "protocol": "https",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "external",
                "v2",
                "contacts"
              ]
            },
            "auth": {
              "type": "bearer",
              "bearer": [
                {
                  "key": "token",
                  "value": "{{api_key}}",
                  "type": "string"
                }
              ]
            },
            "description": "Create a new contact\nDocs: https://lev.com/platform/contacts",
            "body": {
              "mode": "raw",
              "raw": "{\n  \"contact_type\": \"lender_contact\",\n  \"company_id\": 1\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Get a single contact by ID",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "X-Origin-App",
                "value": "postman",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/external/v2/contacts/:contact_id",
              "protocol": "https",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "external",
                "v2",
                "contacts",
                ":contact_id"
              ],
              "variable": [
                {
                  "key": "contact_id",
                  "value": "",
                  "description": "contact_id (required)"
                }
              ]
            },
            "auth": {
              "type": "bearer",
              "bearer": [
                {
                  "key": "token",
                  "value": "{{api_key}}",
                  "type": "string"
                }
              ]
            },
            "description": "Get a single contact by ID\nDocs: https://lev.com/platform/contacts"
          }
        },
        {
          "name": "Update a contact",
          "request": {
            "method": "PATCH",
            "header": [
              {
                "key": "X-Origin-App",
                "value": "postman",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/external/v2/contacts/:contact_id",
              "protocol": "https",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "external",
                "v2",
                "contacts",
                ":contact_id"
              ],
              "variable": [
                {
                  "key": "contact_id",
                  "value": "",
                  "description": "contact_id (required)"
                }
              ]
            },
            "auth": {
              "type": "bearer",
              "bearer": [
                {
                  "key": "token",
                  "value": "{{api_key}}",
                  "type": "string"
                }
              ]
            },
            "description": "Update a contact\nDocs: https://lev.com/platform/contacts"
          }
        }
      ]
    },
    {
      "name": "Companies",
      "description": "CRM company management",
      "item": [
        {
          "name": "List companies in your account",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "X-Origin-App",
                "value": "postman",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/external/v2/companies",
              "protocol": "https",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "external",
                "v2",
                "companies"
              ],
              "query": [
                {
                  "key": "limit",
                  "value": "",
                  "description": "Results per page (1–200, default 50)",
                  "disabled": true
                },
                {
                  "key": "cursor",
                  "value": "",
                  "description": "Cursor for next page",
                  "disabled": true
                },
                {
                  "key": "fields",
                  "value": "",
                  "description": "Comma-separated fields to include",
                  "disabled": true
                }
              ]
            },
            "auth": {
              "type": "bearer",
              "bearer": [
                {
                  "key": "token",
                  "value": "{{api_key}}",
                  "type": "string"
                }
              ]
            },
            "description": "List companies in your account\nDocs: https://lev.com/platform/companies"
          }
        },
        {
          "name": "Create a new company",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "X-Origin-App",
                "value": "postman",
                "type": "text"
              },
              {
                "key": "Content-Type",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/external/v2/companies",
              "protocol": "https",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "external",
                "v2",
                "companies"
              ]
            },
            "auth": {
              "type": "bearer",
              "bearer": [
                {
                  "key": "token",
                  "value": "{{api_key}}",
                  "type": "string"
                }
              ]
            },
            "description": "Create a new company\nDocs: https://lev.com/platform/companies",
            "body": {
              "mode": "raw",
              "raw": "{\n  \"name\": \"Example Company\",\n  \"company_type\": \"lender\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Get a single company by ID",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "X-Origin-App",
                "value": "postman",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/external/v2/companies/:company_id",
              "protocol": "https",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "external",
                "v2",
                "companies",
                ":company_id"
              ],
              "variable": [
                {
                  "key": "company_id",
                  "value": "",
                  "description": "company_id (required)"
                }
              ]
            },
            "auth": {
              "type": "bearer",
              "bearer": [
                {
                  "key": "token",
                  "value": "{{api_key}}",
                  "type": "string"
                }
              ]
            },
            "description": "Get a single company by ID\nDocs: https://lev.com/platform/companies"
          }
        },
        {
          "name": "Update a company",
          "request": {
            "method": "PATCH",
            "header": [
              {
                "key": "X-Origin-App",
                "value": "postman",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/external/v2/companies/:company_id",
              "protocol": "https",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "external",
                "v2",
                "companies",
                ":company_id"
              ],
              "variable": [
                {
                  "key": "company_id",
                  "value": "",
                  "description": "company_id (required)"
                }
              ]
            },
            "auth": {
              "type": "bearer",
              "bearer": [
                {
                  "key": "token",
                  "value": "{{api_key}}",
                  "type": "string"
                }
              ]
            },
            "description": "Update a company\nDocs: https://lev.com/platform/companies"
          }
        }
      ]
    },
    {
      "name": "Lenders",
      "description": "Lender directory and programs",
      "item": [
        {
          "name": "Browse the lender directory",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "X-Origin-App",
                "value": "postman",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/external/v2/lenders/directory",
              "protocol": "https",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "external",
                "v2",
                "lenders",
                "directory"
              ],
              "query": [
                {
                  "key": "name",
                  "value": "",
                  "description": "Search by lender name (case-insensitive)",
                  "disabled": true
                },
                {
                  "key": "filter[state]",
                  "value": "",
                  "description": "Filter by state",
                  "disabled": true
                },
                {
                  "key": "sort",
                  "value": "",
                  "description": "Sort by: name",
                  "disabled": true
                },
                {
                  "key": "fields",
                  "value": "",
                  "description": "Comma-separated fields",
                  "disabled": true
                },
                {
                  "key": "limit",
                  "value": "",
                  "description": "Results per page (1–200, default 50)",
                  "disabled": true
                },
                {
                  "key": "cursor",
                  "value": "",
                  "description": "Cursor for next page",
                  "disabled": true
                }
              ]
            },
            "auth": {
              "type": "bearer",
              "bearer": [
                {
                  "key": "token",
                  "value": "{{api_key}}",
                  "type": "string"
                }
              ]
            },
            "description": "Browse the lender directory\nDocs: https://lev.com/platform/lender-directory"
          }
        },
        {
          "name": "Get detailed lender information including programs",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "X-Origin-App",
                "value": "postman",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/external/v2/lenders/:org_id",
              "protocol": "https",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "external",
                "v2",
                "lenders",
                ":org_id"
              ],
              "variable": [
                {
                  "key": "org_id",
                  "value": "",
                  "description": "org_id (required)"
                }
              ]
            },
            "auth": {
              "type": "bearer",
              "bearer": [
                {
                  "key": "token",
                  "value": "{{api_key}}",
                  "type": "string"
                }
              ]
            },
            "description": "Get detailed lender information including programs\nDocs: https://lev.com/platform/lender-directory"
          }
        },
        {
          "name": "List lending programs for a lender",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "X-Origin-App",
                "value": "postman",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/external/v2/lenders/:org_id/programs",
              "protocol": "https",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "external",
                "v2",
                "lenders",
                ":org_id",
                "programs"
              ],
              "variable": [
                {
                  "key": "org_id",
                  "value": "",
                  "description": "org_id (required)"
                }
              ]
            },
            "auth": {
              "type": "bearer",
              "bearer": [
                {
                  "key": "token",
                  "value": "{{api_key}}",
                  "type": "string"
                }
              ]
            },
            "description": "List lending programs for a lender\nDocs: https://lev.com/platform/lender-directory"
          }
        }
      ]
    },
    {
      "name": "Account",
      "description": "Account team and settings",
      "item": [
        {
          "name": "List team members in your account",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "X-Origin-App",
                "value": "postman",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/external/v2/account/team",
              "protocol": "https",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "external",
                "v2",
                "account",
                "team"
              ]
            },
            "auth": {
              "type": "bearer",
              "bearer": [
                {
                  "key": "token",
                  "value": "{{api_key}}",
                  "type": "string"
                }
              ]
            },
            "description": "List team members in your account\nDocs: https://lev.com/platform/account-&-team"
          }
        }
      ]
    },
    {
      "name": "Market Data",
      "description": "Base rates and asset types",
      "item": [
        {
          "name": "Get current base rates (SOFR, CMT, Prime, etc.)",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "X-Origin-App",
                "value": "postman",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/external/v2/market/base-rates",
              "protocol": "https",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "external",
                "v2",
                "market",
                "base-rates"
              ]
            },
            "auth": {
              "type": "bearer",
              "bearer": [
                {
                  "key": "token",
                  "value": "{{api_key}}",
                  "type": "string"
                }
              ]
            },
            "description": "Get current base rates (SOFR, CMT, Prime, etc.)\nDocs: https://lev.com/platform/market-data"
          }
        },
        {
          "name": "Get available asset type definitions",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "X-Origin-App",
                "value": "postman",
                "type": "text"
              }
            ],
            "url": {
              "raw": "{{base_url}}/api/external/v2/market/asset-types",
              "protocol": "https",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "api",
                "external",
                "v2",
                "market",
                "asset-types"
              ]
            },
            "auth": {
              "type": "bearer",
              "bearer": [
                {
                  "key": "token",
                  "value": "{{api_key}}",
                  "type": "string"
                }
              ]
            },
            "description": "Get available asset type definitions\nDocs: https://lev.com/platform/market-data"
          }
        }
      ]
    }
  ]
}