Animal Facts API

Dogs

Operations related to dogs

List dog breeds

Returns a list of dog breeds with pagination.

get
https://api.example.com/dogs/breeds

Query Parameters

limitinteger(int32)

Maximum number of items to return

Default:20

>= 1<= 100

offsetinteger(int32)

Number of items to skip for pagination

Default:0

>= 0

Response

200 application/json

Successful operation

dataarray[object]
Show Child Parameters
metaobject
Show Child Parameters
get/dogs/breeds
 
200 application/json

List dog facts

Returns a list of interesting dog facts with pagination.

get
https://api.example.com/dogs/facts

Query Parameters

limitinteger(int32)

Maximum number of items to return

Default:20

>= 1<= 100

offsetinteger(int32)

Number of items to skip for pagination

Default:0

>= 0

Response

200 application/json

Successful operation

dataarray[string]

An interesting fact.

Example:Cats can make over 100 different sounds.

metaobject
Show Child Parameters
get/dogs/facts
 
200 application/json

Health

Health check operations

Health check endpoint

Returns the health status of the API.

get
https://api.example.com/v1/health

Response

200 application/json

API is healthy

statusstring

The status of the API.

Example:healthy

get/v1/health
 
200 application/json