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/blue-yonder-tasks-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: Blue Yonder Warehouse Management Inventory Tasks API
description: The Blue Yonder Warehouse Management API provides access to warehouse operations data including inventory positions, task management, labor optimization, and fulfillment workflows. REST APIs support integration with automation systems, robotics, and ERP platforms for distribution center operations.
version: 1.0.0
contact:
name: Blue Yonder Platform
url: https://blueyonder.com/solutions/blue-yonder-platform
servers:
- url: https://api.blueyonder.example.com
description: Blue Yonder WMS API
security:
- oauth2: []
- bearerAuth: []
tags:
- name: Tasks
description: Warehouse task management
paths:
/wms/v1/tasks:
get:
operationId: listTasks
summary: List warehouse tasks
description: Retrieve warehouse tasks (pick, put, move, count) for assignment and tracking.
tags:
- Tasks
parameters:
- name: taskType
in: query
schema:
type: string
enum:
- Pick
- Putaway
- Move
- CycleCount
- ReplenishmentPick
- name: assignedTo
in: query
schema:
type: string
- name: status
in: query
schema:
type: string
enum:
- Pending
- Assigned
- InProgress
- Completed
- Cancelled
responses:
'200':
description: Warehouse tasks
content:
application/json:
schema:
$ref: '#/components/schemas/TaskList'
components:
schemas:
Task:
type: object
properties:
taskId:
type: string
taskType:
type: string
enum:
- Pick
- Putaway
- Move
- CycleCount
- ReplenishmentPick
status:
type: string
enum:
- Pending
- Assigned
- InProgress
- Completed
- Cancelled
priority:
type: integer
assignedTo:
type: string
fromLocation:
type: string
toLocation:
type: string
itemId:
type: string
quantity:
type: number
unitOfMeasure:
type: string
createdAt:
type: string
format: date-time
completedAt:
type: string
format: date-time
TaskList:
type: object
properties:
data:
type: array
items:
$ref: '#/components/schemas/Task'
pagination:
$ref: '#/components/schemas/Pagination'
Pagination:
type: object
properties:
page:
type: integer
pageSize:
type: integer
totalPages:
type: integer
totalItems:
type: integer
securitySchemes:
oauth2:
type: oauth2
flows:
clientCredentials:
tokenUrl: https://auth.blueyonder.example.com/oauth/token
scopes:
wms:read: Read warehouse data
wms:write: Write warehouse data
bearerAuth:
type: http
scheme: bearer