For Agents
Read real estate listings, place media-shoot orders, and look up appointments in the Aryeo real estate media platform.
Get started with Aryeo API in minutes using your preferred integration method.
# Add to your MCP client config (Claude Desktop, Cursor, Windsurf)
{
"jentic": {
"url": "https://api.jentic.com/mcp",
"auth": "oauth"
}
}
# Then ask your agent:
"place a real estate media shoot order in Aryeo"
# → Jentic returns the GET /events tool with parameter schema, agent executes.What an agent can do with Aryeo API API.
Retrieve a paginated list of real estate listings with associated media
Place a new media-shoot order against a listing
Look up the status of a placed media order by order ID
Pull appointment details for scheduled property shoots
Fetch a single listing by ID for downstream workflows
GET STARTED
Use for: I need to place a real estate photo-shoot order for a new listing, Find all listings created in the last week, Get the order details for a specific Aryeo order ID, List upcoming appointments for property shoots
Not supported: Does not handle MLS submission, e-signature, or payment collection — use for real estate media order creation, listing reads, and appointment lookups only.
Jentic publishes the only available OpenAPI document for Aryeo API, keeping it validated and agent-ready.
Jentic publishes the only available OpenAPI specification for Aryeo API, keeping it validated and agent-ready. Aryeo is a real estate media management platform that connects photographers, agents, and brokerages to manage listings, media deliverables, and shoot orders. The API exposes 7 read and order-management endpoints covering listings, orders, and appointments, secured with bearer token authentication. It is designed for partners who need programmatic access to listing media and shoot scheduling rather than full storefront management.
Patterns agents use Aryeo API API for, with concrete tasks.
★ Listing-to-Shoot Automation
When a new property is added to a brokerage's CRM, automatically create the corresponding media-shoot order in Aryeo. The /orders endpoints accept an order tied to an existing listing, removing the manual handoff between agents and the media coordination team. Suitable for brokerages running 50+ listings per week.
Create a new order in Aryeo for listing ID 'abc123' for a standard photo and 3D tour package and return the order ID
Appointment Confirmation Workflow
Pull upcoming media appointments from Aryeo and surface them in agent calendars or chat tools. The /appointments endpoints return scheduled shoots so an agent can confirm timing with the homeowner, send reminders, and update the brokerage's operations dashboard. Useful where photographers and listing agents coordinate across multiple platforms.
List Aryeo appointments scheduled in the next 48 hours and produce a homeowner-confirmation message for each
Listing Media Sync
Use the /listings endpoints to keep external systems — websites, CRMs, MLS feeds — synchronised with Aryeo's listing records and media references. Agents can poll listings for changes and trigger downstream publishing flows whenever new photography or 3D tours are delivered.
Fetch all Aryeo listings updated in the last 24 hours and publish their media URLs to a brokerage CMS
AI Agent for Real Estate Media Operations
An agent integrated through Jentic can monitor new listings, automatically place shoot orders, and confirm appointment changes — coordinating photographers, agents, and homeowners without bespoke integration code. Jentic isolates the Aryeo bearer token in the credential vault so the agent never holds raw secrets.
Through Jentic, watch for new brokerage listings and place corresponding Aryeo orders, then confirm each appointment with the listing agent
7 endpoints — jentic publishes the only available openapi specification for aryeo api, keeping it validated and agent-ready.
METHOD
PATH
DESCRIPTION
/listings
List listings
/listings/{listing_id}
Get listing
/orders
Create order
/orders
List orders
/orders/{order_id}
Get order
/appointments
List appointments
/appointments/{appointment_id}
Get appointment
/listings
List listings
/listings/{listing_id}
Get listing
/orders
Create order
/orders
List orders
/orders/{order_id}
Get order
/appointments
List appointments
Three things that make agents converge on Jentic-routed access.
Credential isolation
Aryeo bearer tokens are stored encrypted in the Jentic vault. Agents receive scoped execution access — the raw token is never exposed in prompts, logs, or agent memory.
Intent-based discovery
Agents search Jentic by intent (e.g. 'place a real estate media order') and Jentic returns the POST /orders operation with its input schema, so the agent can call it without reading Aryeo docs.
Time to first call
Direct Aryeo integration: half a day to wire bearer auth and the orders/listings flow. Through Jentic: under 15 minutes — search, load, execute.
Alternatives and complements available in the Jentic catalogue.
Cloudinary Upload API
Cloudinary stores, transforms, and delivers the property images and videos that Aryeo orders produce.
Use Cloudinary alongside Aryeo when delivered media needs resizing, watermarking, or CDN delivery before publishing to a brokerage site.
Mux
Mux handles encoding and streaming of property video walkthroughs that Aryeo schedules and delivers.
Choose Mux when 3D tours and walkthrough video need adaptive streaming and analytics on top of the raw deliverables Aryeo produces.
Vimeo
Vimeo hosts and delivers real estate video as a general-purpose video platform without Aryeo's shoot-ordering workflow.
Use Vimeo instead of Aryeo when you only need video hosting and do not require coordinated shoot scheduling and listing-tied orders.
Specific to using Aryeo API API through Jentic.
Why is there no official OpenAPI spec for Aryeo API?
Aryeo does not publish an OpenAPI specification. Jentic generates and maintains this spec so that AI agents and developers can call Aryeo API via structured tooling. It is validated against the live API and kept up to date. Get started at https://app.jentic.com/sign-up.
What authentication does the Aryeo API use?
The API uses HTTP bearer token authentication, passed in the Authorization header as 'Bearer {token}'. When called through Jentic, the token is stored in the Jentic credential vault and injected at execution time so it never enters the agent's context.
Can I create a media-shoot order through the Aryeo API?
Yes. POST /orders accepts a new media-shoot order tied to an existing listing. The same endpoint set supports listing all orders and retrieving a single order by ID for status checks.
What are the rate limits for the Aryeo API?
The OpenAPI specification does not publish explicit rate limits. Implement exponential backoff on HTTP 429 responses and cache /listings reads where freshness allows, since listing metadata changes infrequently between shoots.
How do I place an order through Jentic?
Search Jentic for 'create a real estate media order' and the POST /orders operation will be returned. Load the operation schema, supply the listing_id and order details, and execute. Jentic handles authentication and returns the created order ID to the agent.
/appointments/{appointment_id}
Get appointment