Images

Notes
Expert level
The API key should be sent as a Bearer token in the Authorization header of the request. Get your API key.
List

API endpoint:

GET
https://ai.birb.com/api/v1/images

Request example:

curl --location --request GET 'https://ai.birb.com/api/v1/images' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer {api_key}'
Parameter
Type
Description
search
optional string
The search query.
search_by
optional string
Search by. Possible values are: name for Name. Defaults to: name.
resolution
optional string
Filter by resolution. Possible values are: 1024x1024 for 1024×1024, 1792x1024 for 1792×1024, 1024x1792 for 1024×1792.
style
optional string
Filter by style. Possible values are: vivid for Vivid, natural for Natural.
favorite
optional boolean
Filter by favorite.
sort_by
optional string
Sort by. Possible values are: id for Date created, name for Name. Defaults to: id.
sort
optional string
Sort. Possible values are: desc for Descending, asc for Ascending. Defaults to: desc.
per_page
optional integer
Results per page. Possible values are: 10, 25, 50, 100. Defaults to: 10.
Show

API endpoint:

GET
https://ai.birb.com/api/v1/images/{id}

Request example:

curl --location --request GET 'https://ai.birb.com/api/v1/images/{id}' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer {api_key}'
Store

API endpoint:

POST
https://ai.birb.com/api/v1/images

Request example:

curl --location --request POST 'https://ai.birb.com/api/v1/images' \
--header 'Content-Type: application/x-www-form-urlencoded' \
--header 'Authorization: Bearer {api_key}' \
--data-urlencode 'name={name}' \
--data-urlencode 'description={description}'
Parameter
Type
Description
name
required string
The image name.
description
required string
The image description for the AI.
resolution
required string
The resolution of the image. Possible values are: 1024x1024 for 1024×1024, 1792x1024 for 1792×1024, 1024x1792 for 1024×1792.
style
optional string
The style of the image. Possible values are: vivid for Vivid, natural for Natural.
Update

API endpoint:

PUT PATCH
https://ai.birb.com/api/v1/images/{id}

Request example:

curl --location --request PUT 'https://ai.birb.com/api/v1/images/{id}' \
--header 'Content-Type: application/x-www-form-urlencoded' \
--header 'Authorization: Bearer {api_key}'
Parameter
Type
Description
name
optional string
The image name.
favorite
optional boolean
Whether the image is favorite or not.
Delete

API endpoint:

DELETE
https://ai.birb.com/api/v1/images/{id}

Request example:

curl --location --request DELETE 'https://ai.birb.com/api/v1/images/{id}' \
--header 'Authorization: Bearer {api_key}'