Poomi

Introduction

Welcome to the Poomi Open Platform documentation

Poomi is an AI-powered API platform for pet health & behavior analysis. Access pre-trained models through simple REST APIs and pay only for what you use with our credit-based billing system.

What is Poomi?

Poomi lets you integrate AI capabilities into your applications without training your own models. Core capabilities include stool analysis for health detection and disease early warning, expression recognition for understanding your pet's emotions, and behavior analysis for identifying patterns and anomalies. Browse available endpoints on the Endpoints page and start making API calls in minutes.

Quick Start

  1. Get an API Key — Sign up and generate your API key from the Developer Console
  2. Make Your First Call — Send a request to any published endpoint
  3. Pay Per Use — Each API call costs a fixed number of credits

Base URL

All API requests are made to:

https://www.poomi.pet/api/v1

Example Request

curl https://www.poomi.pet/api/v1/pet-stool-analysis \
  -H "Authorization: Bearer pk_your_api_key_here" \
  -H "Content-Type: application/json" \
  -d '{"image": "base64_encoded_image_data"}'

Success Response

{
  "success": true,
  "request_id": "req_abc123def456",
  "data": {
    ...
  }
}

Next Steps

On this page