1---
2id: get-iceberg-namespaces
3title: "List Iceberg namespaces"
4description: "This endpoint retrieves namespaces available in the Iceberg catalog."
5sidebar_label: "List Iceberg namespaces"
6hide_title: true
7hide_table_of_contents: true
8api: eJztV21v2zYQ/ivEfVb8kqXApm9Zm24GuhRo0k+e4dDU2bqOIlmSUhIY+u/D6cWSZyMt0AHDin6ycUfe3fPcQ+q4hyh3AdIlLBRu0O9glUCGQXlykayBFO5zCgJN5iyZKDxGT1hhEEYWGJxUGISsJGm50SjIiJij6IIJJaPUdjf50yy2QooHJz2a+DDsFRSE87aiDLNEUBSPpLXQFGITR+Wks3Gm0mToG1dwqGhLmIk26AQSsA695LIXGaSww7imtpD1EAIScNLLAiN6Br4H9kEKbRhIgBj15xL9M5xygV26EYStt4V4zEnlItoDQSe1c4EeP5fkMYN0K3XABILKsZCQ7iE+O67Cbj6hikdLl1xaDNwZ5xliJAy8pTUPe6X3kmumiMXYHqIns4O6rhOIFDXbbvu6oK5XnC04a0Ib93I2459j6LdDE3qImQilUhjCttSaEytrInOY7kE6p0k1zZh+Chxh/5VgR606QTzyfRn2f0HlOXP40JELdQL4JAvH/mMwy0MJS+gOzVrCqk7O2DfQ62Y9h1W9qpu0V+ea9qvMBKPHEP+t9qD31p8S2Jq/sLfAEOQOIWlXcUUZnsZqrEMoMhF36CGBrfWFjK3pp0tIoCBDRVlAOquTQ/TTbnX5ThwJoOHdS7i1d6XKDy27eVLYcpgwhx9aCsfWhYnojdR36Cv0Nz0pffO7C7Cx33POsTLGznOOXi/dgiPRHHg+oIWFqaSm0VUzanmH9zyGluer2azuJXT1wrkXxkaxtaXJfkjpe5XS0Oz+oywyy996GwU+0VhSL8DsdXXV6erVuaupRy1CA1u01fxQ1neqrEO721pEsy0Vb96u717/fvPH9fr2/f367fuPt28GiZ0rv1fXq+7WaiiNue0Gvma6izmkMK3m0276mx5Nf63e2m9u6TWkkMfo0ulUWyV1bkNMf579MjuZ/d6xW2RYobau4BGwjTQRr63Z0q70KB4p5uLh4oIjPkyAJ6uAqvQUn5t80tH6L+T/K/aR2dqm4R21vjSRCjw7dgZHCjMxLNGkkIeK9DDBXjupcry4nHDxlKGJPCD7Y0+dAMNvA88n8/lkdlGaEHl8Z6ezIRbSjMK+42m8n+iPqDyqcj8c3f/Tm6HTWsSnOHVakmESGl3sOyktoZozod0DKfnHhMqK4UX7/UYG/Oh1XbO5fUBw0zMKjHMY+l+g7dueF2exNHobXjeV1CUvasRZSU9N41mQCeQoM9bLct/tulZ8mYx2nVzJHOVwAH+7uYe6/hthRvz5
9sidebar_class_name: "get api-method"
10info_path: docs/api/HTTP/runtime
11custom_edit_url: null
12proxy: http://localhost:8090
13---
14
15import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
16import ParamsDetails from "@theme/ParamsDetails";
17import RequestSchema from "@theme/RequestSchema";
18import StatusCodes from "@theme/StatusCodes";
19import OperationTabs from "@theme/OperationTabs";
20import TabItem from "@theme/TabItem";
21import Heading from "@theme/Heading";
22
23<Heading
24 as={"h1"}
25 className={"openapi__heading"}
26 children={"List Iceberg namespaces"}
27>
28</Heading>
29
30<MethodEndpoint
31 method={"get"}
32 path={"/v1/iceberg/namespaces"}
33 context={"endpoint"}
34>
35
36</MethodEndpoint>
37
38
39
40This endpoint retrieves namespaces available in the Iceberg catalog.
41If a `parent` namespace is provided, it will list the child namespaces under the specified parent.
42
43<Heading
44 id={"request"}
45 as={"h2"}
46 className={"openapi-tabs__heading"}
47 children={"Request"}
48>
49</Heading>
50
51<ParamsDetails
52 parameters={[{"name":"parent","in":"query","description":"The parent namespace from which to retrieve child namespaces.","required":false,"schema":{"type":"object","required":["parts"],"properties":{"parts":{"type":"array","items":{"type":"string"}}},"title":"Namespace"}}]}
53>
54
55</ParamsDetails>
56
57<RequestSchema
58 title={"Body"}
59 body={undefined}
60>
61
62</RequestSchema>
63
64<StatusCodes
65 id={undefined}
66 label={undefined}
67 responses={{"200":{"description":"Namespaces retrieved successfully","content":{"application/json":{"schema":{"type":"object","required":["namespaces"],"properties":{"namespaces":{"type":"array","items":{"type":"object","required":["parts"],"properties":{"parts":{"type":"array","items":{"type":"string"}}},"title":"Namespace"}}},"title":"NamespacesResponse"},"example":{"namespaces":[{"parts":["catalog_a"]},{"parts":["catalog_b","schema_1"]}]}}}},"400":{"description":"Bad request","content":{"application/json":{"schema":{"type":"object","required":["error"],"properties":{"error":{"type":"object","required":["message","type","code"],"properties":{"code":{"type":"integer","format":"int32","minimum":0},"message":{"type":"string"},"type":{"type":"string","enum":["NoSuchNamespaceException","BadRequestException","InternalServerError"],"title":"IcebergErrorType"}},"title":"IcebergError"}},"title":"IcebergResponseError"},"example":{"error":{"message":"Invalid namespace request","type":"BadRequestException","code":400}}}}},"404":{"description":"Namespace not found","content":{"application/json":{"schema":{"type":"object","required":["error"],"properties":{"error":{"type":"object","required":["message","type","code"],"properties":{"code":{"type":"integer","format":"int32","minimum":0},"message":{"type":"string"},"type":{"type":"string","enum":["NoSuchNamespaceException","BadRequestException","InternalServerError"],"title":"IcebergErrorType"}},"title":"IcebergError"}},"title":"IcebergResponseError"},"example":{"error":{"message":"Namespace provided does not exist","type":"NoSuchNamespaceException","code":404}}}}},"500":{"description":"Internal server error","content":{"application/json":{"schema":{"type":"object","required":["error"],"properties":{"error":{"type":"object","required":["message","type","code"],"properties":{"code":{"type":"integer","format":"int32","minimum":0},"message":{"type":"string"},"type":{"type":"string","enum":["NoSuchNamespaceException","BadRequestException","InternalServerError"],"title":"IcebergErrorType"}},"title":"IcebergError"}},"title":"IcebergResponseError"},"example":{"error":{"message":"Internal Server Error: DF_SCHEMA_NOT_FOUND","type":"InternalServerError","code":500}}}}}}}
68>
69
70</StatusCodes>
71
72
73
1---
2id: get-iceberg-namespaces
3title: "List Iceberg namespaces"
4description: "This endpoint retrieves namespaces available in the Iceberg catalog."
5sidebar_label: "List Iceberg namespaces"
6hide_title: true
7hide_table_of_contents: true
8api: eJztV21v2zYQ/ivEfVb8kqXApm9Zm24GuhRo0k+e4dDU2bqOIlmSUhIY+u/D6cWSZyMt0AHDin6ycUfe3fPcQ+q4hyh3AdIlLBRu0O9glUCGQXlykayBFO5zCgJN5iyZKDxGT1hhEEYWGJxUGISsJGm50SjIiJij6IIJJaPUdjf50yy2QooHJz2a+DDsFRSE87aiDLNEUBSPpLXQFGITR+Wks3Gm0mToG1dwqGhLmIk26AQSsA695LIXGaSww7imtpD1EAIScNLLAiN6Br4H9kEKbRhIgBj15xL9M5xygV26EYStt4V4zEnlItoDQSe1c4EeP5fkMYN0K3XABILKsZCQ7iE+O67Cbj6hikdLl1xaDNwZ5xliJAy8pTUPe6X3kmumiMXYHqIns4O6rhOIFDXbbvu6oK5XnC04a0Ib93I2459j6LdDE3qImQilUhjCttSaEytrInOY7kE6p0k1zZh+Chxh/5VgR606QTzyfRn2f0HlOXP40JELdQL4JAvH/mMwy0MJS+gOzVrCqk7O2DfQ62Y9h1W9qpu0V+ea9qvMBKPHEP+t9qD31p8S2Jq/sLfAEOQOIWlXcUUZnsZqrEMoMhF36CGBrfWFjK3pp0tIoCBDRVlAOquTQ/TTbnX5ThwJoOHdS7i1d6XKDy27eVLYcpgwhx9aCsfWhYnojdR36Cv0Nz0pffO7C7Cx33POsTLGznOOXi/dgiPRHHg+oIWFqaSm0VUzanmH9zyGluer2azuJXT1wrkXxkaxtaXJfkjpe5XS0Oz+oywyy996GwU+0VhSL8DsdXXV6erVuaupRy1CA1u01fxQ1neqrEO721pEsy0Vb96u717/fvPH9fr2/f367fuPt28GiZ0rv1fXq+7WaiiNue0Gvma6izmkMK3m0276mx5Nf63e2m9u6TWkkMfo0ulUWyV1bkNMf579MjuZ/d6xW2RYobau4BGwjTQRr63Z0q70KB4p5uLh4oIjPkyAJ6uAqvQUn5t80tH6L+T/K/aR2dqm4R21vjSRCjw7dgZHCjMxLNGkkIeK9DDBXjupcry4nHDxlKGJPCD7Y0+dAMNvA88n8/lkdlGaEHl8Z6ezIRbSjMK+42m8n+iPqDyqcj8c3f/Tm6HTWsSnOHVakmESGl3sOyktoZozod0DKfnHhMqK4UX7/UYG/Oh1XbO5fUBw0zMKjHMY+l+g7dueF2exNHobXjeV1CUvasRZSU9N41mQCeQoM9bLct/tulZ8mYx2nVzJHOVwAH+7uYe6/hthRvz5
9sidebar_class_name: "get api-method"
10info_path: docs/api/HTTP/runtime
11custom_edit_url: null
12proxy: http://localhost:8090
13---
14
15import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
16import ParamsDetails from "@theme/ParamsDetails";
17import RequestSchema from "@theme/RequestSchema";
18import StatusCodes from "@theme/StatusCodes";
19import OperationTabs from "@theme/OperationTabs";
20import TabItem from "@theme/TabItem";
21import Heading from "@theme/Heading";
22
23<Heading
24 as={"h1"}
25 className={"openapi__heading"}
26 children={"List Iceberg namespaces"}
27>
28</Heading>
29
30<MethodEndpoint
31 method={"get"}
32 path={"/v1/iceberg/namespaces"}
33 context={"endpoint"}
34>
35
36</MethodEndpoint>
37
38
39
40This endpoint retrieves namespaces available in the Iceberg catalog.
41If a `parent` namespace is provided, it will list the child namespaces under the specified parent.
42
43<Heading
44 id={"request"}
45 as={"h2"}
46 className={"openapi-tabs__heading"}
47 children={"Request"}
48>
49</Heading>
50
51<ParamsDetails
52 parameters={[{"name":"parent","in":"query","description":"The parent namespace from which to retrieve child namespaces.","required":false,"schema":{"type":"object","required":["parts"],"properties":{"parts":{"type":"array","items":{"type":"string"}}},"title":"Namespace"}}]}
53>
54
55</ParamsDetails>
56
57<RequestSchema
58 title={"Body"}
59 body={undefined}
60>
61
62</RequestSchema>
63
64<StatusCodes
65 id={undefined}
66 label={undefined}
67 responses={{"200":{"description":"Namespaces retrieved successfully","content":{"application/json":{"schema":{"type":"object","required":["namespaces"],"properties":{"namespaces":{"type":"array","items":{"type":"object","required":["parts"],"properties":{"parts":{"type":"array","items":{"type":"string"}}},"title":"Namespace"}}},"title":"NamespacesResponse"},"example":{"namespaces":[{"parts":["catalog_a"]},{"parts":["catalog_b","schema_1"]}]}}}},"400":{"description":"Bad request","content":{"application/json":{"schema":{"type":"object","required":["error"],"properties":{"error":{"type":"object","required":["message","type","code"],"properties":{"code":{"type":"integer","format":"int32","minimum":0},"message":{"type":"string"},"type":{"type":"string","enum":["NoSuchNamespaceException","BadRequestException","InternalServerError"],"title":"IcebergErrorType"}},"title":"IcebergError"}},"title":"IcebergResponseError"},"example":{"error":{"message":"Invalid namespace request","type":"BadRequestException","code":400}}}}},"404":{"description":"Namespace not found","content":{"application/json":{"schema":{"type":"object","required":["error"],"properties":{"error":{"type":"object","required":["message","type","code"],"properties":{"code":{"type":"integer","format":"int32","minimum":0},"message":{"type":"string"},"type":{"type":"string","enum":["NoSuchNamespaceException","BadRequestException","InternalServerError"],"title":"IcebergErrorType"}},"title":"IcebergError"}},"title":"IcebergResponseError"},"example":{"error":{"message":"Namespace provided does not exist","type":"NoSuchNamespaceException","code":404}}}}},"500":{"description":"Internal server error","content":{"application/json":{"schema":{"type":"object","required":["error"],"properties":{"error":{"type":"object","required":["message","type","code"],"properties":{"code":{"type":"integer","format":"int32","minimum":0},"message":{"type":"string"},"type":{"type":"string","enum":["NoSuchNamespaceException","BadRequestException","InternalServerError"],"title":"IcebergErrorType"}},"title":"IcebergError"}},"title":"IcebergResponseError"},"example":{"error":{"message":"Internal Server Error: DF_SCHEMA_NOT_FOUND","type":"InternalServerError","code":500}}}}}}}
68>
69
70</StatusCodes>
71
72
73