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.
Call it yourself
curl for this page
This API
curl "https://apis.io/api/v1/apis/toro-jobs-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
openapi: 3.2.0
info:
title: Toro Horizon360 Jobs API
description: Toro Horizon360 is an all-in-one business management software for landscape contractors. The API provides endpoints for managing crews, schedules, jobs, customers, invoices, equipment, and payments for landscaping businesses.
version: 1.0.0
contact:
name: Toro Company
url: https://horizon360.toro.com/
x-logo:
url: https://kinlane-images.s3.amazonaws.com/shared/apis-json/apis-json-logo.jpg
servers:
- url: https://api.horizon360.toro.com/v1
description: Horizon360 Production API
security:
- bearerAuth: []
tags:
- name: Jobs
description: Create and track landscaping jobs and work orders
paths:
/jobs:
get:
operationId: listJobs
summary: List Jobs
description: Returns a paginated list of jobs and work orders.
tags:
- Jobs
parameters:
- name: status
in: query
schema:
type: string
enum:
- pending
- scheduled
- in_progress
- completed
- invoiced
description: Filter by job status
- name: customerId
in: query
schema:
type: string
description: Filter by customer ID
- name: startDate
in: query
schema:
type: string
format: date
description: Filter jobs on or after this date
- name: endDate
in: query
schema:
type: string
format: date
description: Filter jobs on or before this date
- name: page
in: query
schema:
type: integer
default: 1
- name: limit
in: query
schema:
type: integer
default: 25
responses:
'200':
description: Successful response
content:
application/json:
schema:
$ref: '#/components/schemas/JobList'
post:
operationId: createJob
summary: Create Job
description: Create a new landscaping job or work order.
tags:
- Jobs
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/JobInput'
responses:
'201':
description: Job created
content:
application/json:
schema:
$ref: '#/components/schemas/Job'
/jobs/{jobId}:
get:
operationId: getJob
summary: Get Job
description: Retrieve a specific job by ID.
tags:
- Jobs
parameters:
- name: jobId
in: path
required: true
schema:
type: string
responses:
'200':
description: Successful response
content:
application/json:
schema:
$ref: '#/components/schemas/Job'
'404':
$ref: '#/components/responses/NotFound'
put:
operationId: updateJob
summary: Update Job
description: Update an existing job record.
tags:
- Jobs
parameters:
- name: jobId
in: path
required: true
schema:
type: string
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/JobInput'
responses:
'200':
description: Job updated
content:
application/json:
schema:
$ref: '#/components/schemas/Job'
components:
responses:
NotFound:
description: Resource not found
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
schemas:
Address:
type: object
properties:
street:
type: string
city:
type: string
state:
type: string
zip:
type: string
country:
type: string
JobList:
type: object
properties:
data:
type: array
items:
$ref: '#/components/schemas/Job'
total:
type: integer
page:
type: integer
limit:
type: integer
Error:
type: object
properties:
code:
type: string
message:
type: string
JobInput:
type: object
required:
- customerId
- title
- jobType
properties:
customerId:
type: string
title:
type: string
description:
type: string
jobType:
type: string
serviceAddress:
$ref: '#/components/schemas/Address'
estimatedHours:
type: number
scheduledDate:
type: string
format: date
crewId:
type: string
notes:
type: string
Job:
type: object
properties:
id:
type: string
customerId:
type: string
title:
type: string
description:
type: string
status:
type: string
enum:
- pending
- scheduled
- in_progress
- completed
- invoiced
jobType:
type: string
serviceAddress:
$ref: '#/components/schemas/Address'
estimatedHours:
type: number
actualHours:
type: number
scheduledDate:
type: string
format: date
completedDate:
type: string
format: date
crewId:
type: string
notes:
type: string
createdAt:
type: string
format: date-time
securitySchemes:
bearerAuth:
type: http
scheme: bearer
bearerFormat: JWT