TaskRabbit Delivery API

Dolly-based on-demand delivery, quoting, and routing.

Operations 3

POST /deliveries Create Delivery #
GET /me Get Partner Info #
GET /ping Return Ping #

Documentation

Specifications

Other Resources

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/taskrabbit-delivery-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

taskrabbit-delivery-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: TaskRabbit Partner Delivery API
  description: 'TaskRabbit''s Partner API program, documented at developer.taskrabbit.com, spans two live surfaces: the Home Services Partner Platform (versioned 2025-12) covering the Estimate, Availability, Bid, Book project workflow plus catalog and cancellation/reschedule management, and the Delivery API inherited from Dolly (acquired by TaskRabbit in November 2024 and rebranded TaskRabbit Delivery). Both surfaces require partner approval and Auth0 OAuth2 client-credentials (machine-to-machine) tokens; there is no public self-serve signup. Endpoint shapes below are modeled from TaskRabbit''s public developer documentation (method, path, and the parameters/fields the docs describe); exact request/response schemas are partially withheld behind the gated Postman collection and reference pages given to approved partners, so object schemas here are best-effort and marked accordingly rather than fabricated in full detail.'
  version: 2025-12
  contact:
    name: TaskRabbit Developer Hub
    url: https://developer.taskrabbit.com
  x-endpointsModeled: true
  x-accessModel: Partner-approval gated; no public self-serve signup.
servers:
- url: https://{api_subdomain}.partner-platform.taskrabbit.com/2025-12
  description: TaskRabbit Home Services Partner Platform (partner-specific subdomain, Sandbox and Production)
  variables:
    api_subdomain:
      default: your-subdomain
      description: Subdomain issued to the partner during onboarding.
- url: https://papi.dolly.com/v1
  description: TaskRabbit Delivery (Dolly) Partner API - Production
- url: https://papi.sandbox.dolly.com/v1
  description: TaskRabbit Delivery (Dolly) Partner API - Sandbox
security:
- oauth2: []
tags:
- name: Delivery
  description: Dolly-based on-demand delivery, quoting, and routing.
paths:
  /deliveries:
    post:
      operationId: createDelivery
      tags:
      - Delivery
      summary: Create Delivery
      description: Quotes and creates an on-demand delivery via TaskRabbit Delivery (Dolly). Server variable for this path is the Dolly PAPI base URL, not the Home Services partner-platform host.
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              description: Pickup/dropoff addresses, item/unit details, and vehicle/service level; full field list is provided via the partner Postman collection.
      responses:
        '200':
          description: Delivery created.
  /me:
    get:
      operationId: getPartnerInformation
      tags:
      - Delivery
      summary: Get Partner Info
      description: Returns the authorized partner's information (icon URL, store display name, partner ID, subject ID).
      responses:
        '200':
          description: Partner information.
          content:
            application/json:
              schema:
                type: object
                properties:
                  defaultIconUrl:
                    type: string
                  defaultStoreDisplayName:
                    type: string
                  partnerId:
                    type: string
                  subjectId:
                    type: string
              example:
                defaultIconUrl: https://dolly.com/images/dolly-logo-pink.svg
                defaultStoreDisplayName: Dolly QA
                partnerId: dolly
                subjectId: k0DjAYBzosSIbUU2AMdMLKtpk0tv081Z
  /ping:
    get:
      operationId: pingDeliveryApi
      tags:
      - Delivery
      summary: Return Ping
      description: A simple route that can be used to validate that the Delivery API is up and running.
      responses:
        '200':
          description: Service is healthy.
components:
  securitySchemes:
    oauth2:
      type: oauth2
      description: Auth0 machine-to-machine (M2M) OAuth2 client-credentials grant. Credentials are issued during partner onboarding.
      flows:
        clientCredentials:
          tokenUrl: https://taskrabbit.auth0.com/oauth/token
          scopes: {}