Skip to main content
GET
/
brands
/
{brandId}
Get a brand by Id.
curl --request GET \
  --url https://api.aasaan.shop/api/v1/stores/brands/{brandId} \
  --header 'x-api-key: <api-key>'
import requests

url = "https://api.aasaan.shop/api/v1/stores/brands/{brandId}"

headers = {"x-api-key": "<api-key>"}

response = requests.get(url, headers=headers)

print(response.text)
const options = {method: 'GET', headers: {'x-api-key': '<api-key>'}};

fetch('https://api.aasaan.shop/api/v1/stores/brands/{brandId}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
<?php

$curl = curl_init();

curl_setopt_array($curl, [
CURLOPT_URL => "https://api.aasaan.shop/api/v1/stores/brands/{brandId}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"x-api-key: <api-key>"
],
]);

$response = curl_exec($curl);
$err = curl_error($curl);

curl_close($curl);

if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
package main

import (
"fmt"
"net/http"
"io"
)

func main() {

url := "https://api.aasaan.shop/api/v1/stores/brands/{brandId}"

req, _ := http.NewRequest("GET", url, nil)

req.Header.Add("x-api-key", "<api-key>")

res, _ := http.DefaultClient.Do(req)

defer res.Body.Close()
body, _ := io.ReadAll(res.Body)

fmt.Println(string(body))

}
HttpResponse<String> response = Unirest.get("https://api.aasaan.shop/api/v1/stores/brands/{brandId}")
.header("x-api-key", "<api-key>")
.asString();
require 'uri'
require 'net/http'

url = URI("https://api.aasaan.shop/api/v1/stores/brands/{brandId}")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Get.new(url)
request["x-api-key"] = '<api-key>'

response = http.request(request)
puts response.read_body
{
  "id": "623d3455ec3c4b3548eb4a322",
  "name": "Head & Shoulders",
  "slug": "head_shoulders",
  "description": "Head & Shoulders",
  "hide": false,
  "displayOrder": 0,
  "active": "true",
  "image": {
    "id": 0,
    "url": "https://images.aasaan.app/123412421",
    "type": "image/png"
  },
  "date_created": "2022-03-25T03:17:44.092Z",
  "date_modified": "2022-06-10T07:51:12.510Z"
}

Authorizations

x-api-key
string
header
required

Path Parameters

brandId
string
required

Brand id

Response

Returns a brand.

id
string

Unique identifier for the resource

Example:

"623d3455ec3c4b3548eb4a322"

name
string

Name

Example:

"Head & Shoulders"

slug
string

Slug

Example:

"head_shoulders"

description
string

Head & Shoulders brand

Example:

"Head & Shoulders"

hide
boolean

Hide a brand

Example:

false

displayOrder
string

Display order

Example:

0

active
boolean

Activate the brand

Example:

"true"

image
object

Brand image

date_created
string

Created date

Example:

"2022-03-25T03:17:44.092Z"

date_modified
string

Modified date

Example:

"2022-06-10T07:51:12.510Z"