Skip to main content
POST
/
v2
/
namespaces
/
filter
v2 Namespaces Filter
curl --request POST \
  --url https://api.globalwebindex.com/v2/namespaces/filter \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '{
  "namespaces": [
    {
      "code": "<string>"
    }
  ]
}'
{
  "namespaces": [
    {
      "code": "<string>",
      "name": "<string>",
      "parent_namespace_code": {
        "value": "<string>"
      },
      "type": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

Body

application/json

request for filter

namespaces
object[]

Namespace codes to filter namespaces by. Empty request means get all namespaces.

Response

details of found namespaces

namespaces
object[]

List of namespaces found using filter criteria.

I