Shipment Statuses

Add MCP server to your AI tool

Allow AI tools and LLMs to interact with the API documentation portal through MCP.

MCP server URL

https://api-reference.arta.io/mcp

Standard setup for AI tools providing an mcp.json file

mcp.json
"Arta API Reference MCP server": {
  "url": "https://api-reference.arta.io/mcp"
}
Close
GET /metadata/shipment_statuses

The list of statuses for a shipment on Arta.

Headers

  • Authorization string Required

    Authorize your API calls with an Arta API token

Responses

  • 200 application/json

    A collection of shipment statuses

    Hide headers attributes Show headers attributes
    • content-type string
    • x-arta-request-id string

      A unique identifier for the Arta API call

    Hide response attributes Show response attributes object
    • description string

      A long form description

    • id string

      The ID representing the resource

    • name string

      A brief title for the resource

GET /metadata/shipment_statuses
curl \
 --request GET 'https://api.arta.io/metadata/shipment_statuses' \
 --header "Authorization: ARTA_APIKey s0e1t2e3c4a5s6t7r8o9n10o11m12y"
Response examples (200)
# Headers
content-type: application/json
x-arta-request-id: FkBjuxbwLLTx4RoAARkx

# Payload
[
  {
    "description": "A quote has been booked and is awaiting confirmation by an Arta logistics specialist",
    "id": "pending",
    "name": "Pending"
  }
]