Deel · Capability

Deel Contractors API — IC Contracts

Self-contained Naftiko capability for creating Independent Contractor contracts.

Deel Contractors API — IC Contracts is a Naftiko capability published by Deel, one of 20 capabilities the APIs.io network indexes for this provider. It bundles 1 operation across the POST method rooted at /v1/contracts/ic.

Can be deployed as a REST endpoint, MCP tool, or Agent Skill via Naftiko.

Tagged areas include Deel, Contractors, IC, and Contracts.

Run with Naftiko DeelContractorsICContracts

What You Can Do

POST
Createiccontract — Create IC contract.
/v1/contracts/ic

Capability Spec

contractors-contracts.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Deel Contractors API — IC Contracts
  description: Self-contained Naftiko capability for creating Independent Contractor contracts.
  tags:
  - Deel
  - Contractors
  - IC
  - Contracts
  created: '2026-05-25'
  modified: '2026-05-25'
binds:
- namespace: env
  keys:
    DEEL_API_TOKEN: DEEL_API_TOKEN
capability:
  consumes:
  - type: http
    namespace: contractors-contracts
    baseUri: https://api.letsdeel.com/rest/v2
    description: Deel IC Contract creation capability.
    resources:
    - name: ic-contracts
      path: /contracts/ic
      operations:
      - name: createIcContract
        method: POST
        description: Create a new IC contract (ongoing, PAYG, milestone, or COR).
        outputRawFormat: json
        outputParameters:
        - { name: result, type: object, value: $. }
        inputParameters:
        - { name: body, in: body, type: object, required: true }
        - { name: Idempotency-Key, in: header, type: string, required: false }
    authentication:
      type: bearer
      value: '{{env.DEEL_API_TOKEN}}'
      placement: header
  exposes:
  - type: rest
    namespace: contractors-contracts-rest
    port: 8080
    description: REST adapter for IC contracts.
    resources:
    - path: /v1/contracts/ic
      name: ic-contracts
      description: REST surface for IC contracts.
      operations:
      - method: POST
        name: createIcContract
        description: Create IC contract.
        call: contractors-contracts.createIcContract
        with: { body: rest.body, Idempotency-Key: rest.header.idempotency_key }