Skip to main content
GET
/
api
/
v2
/
resources
/
{id}
curl --request GET \
  --url https://api.nimble.com/api/v2/resources/123 \
  --header 'Authorization: Bearer YOUR_API_KEY'
{
  "data": {
    "id": "123",
    "type": "resource",
    "attributes": {
      "name": "Example Resource",
      "created_at": "2024-01-01T00:00:00Z"
    }
  }
}

Request

id
string
required
The unique identifier of the resource
include
string
Comma-separated list of related resources to include

Response

data
object
curl --request GET \
  --url https://api.nimble.com/api/v2/resources/123 \
  --header 'Authorization: Bearer YOUR_API_KEY'
{
  "data": {
    "id": "123",
    "type": "resource",
    "attributes": {
      "name": "Example Resource",
      "created_at": "2024-01-01T00:00:00Z"
    }
  }
}