Designers

This page lists and describes the Designers category of endpoints within the Template Catalog API. It also includes interactive testing environments for each endpoint in this category.

Fetch a list of all Designers

/v1/catalog/designers

HTTP Method: GET

Description: Access a complete list of all Designers in the catalog.

The response is paginated, with a standard display of 200 items per page. You can manipulate the ‘pagesize’ request parameter to control the number of items shown per page.

Request Parameters

The following table displays request parameters.

Parameter
Value
Description

pagesize

int

Set the item number per page

Get a List of Designers

get

Get a list of designers from the catalog.

Authorizations
Responses
200
Successful response
application/json
ResponsestringExample: {"count":34,"next":null,"previous":null,"results":[{"available":true,"avatar_url":"https://d1oco4z2z1fhwp.cloudfront.net/designers/LuanaLiguori.png","base":"Naples, Italy (GMT+2)","description":"Hello, I'm Luana, a graphic and web designer with 8+ years of experience, specializing in email and landing page design. My approach is marked by precision, proactive problem-solving, and strong collaboration. I create visually impactful designs that align with marketing strategies, including social media graphics, blog covers, and presentations. I also offer custom design services tailored to clients' unique needs.","short_description":"","display_name":"Luana Liguori","email":"[email protected]","first_name":"Luana","highlighted":false,"hobby":"","id":"luana-liguori","last_name":"Liguori","position":"Beefree In-House Designer","social_behance":"","social_dribbble":"","social_linkedin":"","website":"https://www.ilas.com/portfolio/20538400/luana-liguori"}]}
get
GET /v1/catalog/designers HTTP/1.1
Host: api.getbee.io
Authorization: Bearer Enter Dev Console API Key as Bearer token
Accept: */*
{
  "count": 34,
  "next": null,
  "previous": null,
  "results": [
    {
      "available": true,
      "avatar_url": "https://d1oco4z2z1fhwp.cloudfront.net/designers/LuanaLiguori.png",
      "base": "Naples, Italy (GMT+2)",
      "description": "Hello, I'm Luana, a graphic and web designer with 8+ years of experience, specializing in email and landing page design. My approach is marked by precision, proactive problem-solving, and strong collaboration. I create visually impactful designs that align with marketing strategies, including social media graphics, blog covers, and presentations. I also offer custom design services tailored to clients' unique needs.",
      "short_description": "",
      "display_name": "Luana Liguori",
      "email": "[email protected]",
      "first_name": "Luana",
      "highlighted": false,
      "hobby": "",
      "id": "luana-liguori",
      "last_name": "Liguori",
      "position": "Beefree In-House Designer",
      "social_behance": "",
      "social_dribbble": "",
      "social_linkedin": "",
      "website": "https://www.ilas.com/portfolio/20538400/luana-liguori"
    }
  ]
}

Fetch a single Designer

/v1/catalog/designers/:slug

HTTP Method: GET

Description: Retrieve detailed information for a specific Designer, identified by the unique slug present in the URL. This enables the procurement of comprehensive data pertaining to the particular designer, including their portfolio of templates and any associated metadata within the catalog.

Get a Designer

get

Get a specific designer from the catalog.

Authorizations
Responses
200
Successful response
application/json
ResponsestringExample: {"available":true,"avatar_url":"https://d1oco4z2z1fhwp.cloudfront.net/designers/LuanaLiguori.png","base":"Naples, Italy (GMT+2)","description":"Hello, I'm Luana, a graphic and web designer with 8+ years of experience, specializing in email and landing page design. My approach is marked by precision, proactive problem-solving, and strong collaboration. I create visually impactful designs that align with marketing strategies, including social media graphics, blog covers, and presentations. I also offer custom design services tailored to clients' unique needs.","short_description":"","display_name":"Luana Liguori","email":"[email protected]","first_name":"Luana","highlighted":false,"hobby":"","id":"luana-liguori","last_name":"Liguori","position":"Beefree In-House Designer","social_behance":"","social_dribbble":"","social_linkedin":"","website":"https://www.ilas.com/portfolio/20538400/luana-liguori"}
get
GET /v1/designers/:slug HTTP/1.1
Host: api.getbee.io
Authorization: Bearer Enter Dev Console API Key as Bearer token
Accept: */*
{
  "available": true,
  "avatar_url": "https://d1oco4z2z1fhwp.cloudfront.net/designers/LuanaLiguori.png",
  "base": "Naples, Italy (GMT+2)",
  "description": "Hello, I'm Luana, a graphic and web designer with 8+ years of experience, specializing in email and landing page design. My approach is marked by precision, proactive problem-solving, and strong collaboration. I create visually impactful designs that align with marketing strategies, including social media graphics, blog covers, and presentations. I also offer custom design services tailored to clients' unique needs.",
  "short_description": "",
  "display_name": "Luana Liguori",
  "email": "[email protected]",
  "first_name": "Luana",
  "highlighted": false,
  "hobby": "",
  "id": "luana-liguori",
  "last_name": "Liguori",
  "position": "Beefree In-House Designer",
  "social_behance": "",
  "social_dribbble": "",
  "social_linkedin": "",
  "website": "https://www.ilas.com/portfolio/20538400/luana-liguori"
}

Last updated

Was this helpful?