Provider Resources

List Provider Resources

get/provider/{provider}/{resourceName}

Path parameters

provider'11labs' required

The provider (e.g., 11labs)

resourceName'pronunciation-dictionary' required

The resource name (e.g., pronunciation-dictionary)

Query parameters

idstring
resourceIdstring
pagenumber

This is the page number to return. Defaults to 1.

sortOrder'ASC' | 'DESC'

This is the sort order for pagination. Defaults to 'DESC'.

limitnumber

This is the maximum number of items to return. Defaults to 100.

createdAtGtstring date-time

This will return items where the createdAt is greater than the specified value.

createdAtLtstring date-time

This will return items where the createdAt is less than the specified value.

createdAtGestring date-time

This will return items where the createdAt is greater than or equal to the specified value.

createdAtLestring date-time

This will return items where the createdAt is less than or equal to the specified value.

updatedAtGtstring date-time

This will return items where the updatedAt is greater than the specified value.

updatedAtLtstring date-time

This will return items where the updatedAt is less than the specified value.

updatedAtGestring date-time

This will return items where the updatedAt is greater than or equal to the specified value.

updatedAtLestring date-time

This will return items where the updatedAt is less than or equal to the specified value.

Response

List of provider resources

Example response

{
  "results": [
    {
      "resource": {
        "pronunciationDictionaryId": "5xM3yVvZQKV0EfqQpLrJ",
        "dictionaryName": "My Dictionary",
        "createdBy": "ar6633Es2kUjFXBdR1iVc9ztsXl1",
        "creationTimeUnix": 1714156800,
        "versionId": "5xM3yVvZQKV0EfqQpLrJ",
        "versionRulesNum": 5,
        "description": "This is a test dictionary"
      }
    }
  ]
}

Changes