Textures
Fetch texture(s)
GET /textures
Fetch All Textures - GET Endpoint
The Fetch All Textures
endpoint of the Simplio3D API provides a list of all available textures. This endpoint is useful for retrieving texture data that can be applied within the Simplio3D environment.
URL
Request Parameters
Headers:
Authorization
: Bearer token for authentication (required)
Response
Status Code:
200 OK
Body: Returns a JSON array of objects, each representing a texture with the following properties:
id
: Unique identifier for the texture.name
: Name of the texture.url
: Direct URL to the texture file.category
: Category to which the texture belongs.
Example Response
Use this endpoint to integrate texture data retrieval within your application. Ensure to handle authentication and JSON parsing to access the desired texture details.
GET /textures/{id}
Get Texture by ID
Request Parameters
Path Parameters:
Id
: The unique identifier of the texture (required).
Last updated
Was this helpful?