***
id: 09e2d46f-3a9f-4784-991c-134ee0719bc4
slug: /sdks/reference/conferences/list
title: List
sidebar-title: List
max-toc-depth: 3
----------------
Use this endpoint for the Conference method to read all of the conferences that are associated with your SignalWire account.
This will be returned as a list of conferences.
## Request examples
```javascript title="Node.js"
const { RestClient } = require('@signalwire/compatibility-api')
const client = RestClient('YourProjectID', 'YourAuthToken', { signalwireSpaceUrl: 'example.signalwire.com' })
client.conferences.each(conferences => console.log(conferences.sid));
```
```csharp
using System;
using System.Collections.Generic;
using Twilio;
using Twilio.Rest.Api.V2010.Account;
class Program
{
static void Main(string[] args)
{
TwilioClient.Init("YourProjectID", "YourAuthToken", new Dictionary { ["signalwireSpaceUrl"] = "{SPACE}.signalwire.com" });
var conferences = ConferenceResource.Read();
foreach(var record in conferences)
{
Console.WriteLine(record.Sid);
}
}
}
```
```python
from signalwire.rest import Client as signalwire_client
client = signalwire_client("YourProjectID", "YourAuthToken", signalwire_space_url = 'example.signalwire.com')
conferences = client.conferences.list()
for record in conferences:
print(record.sid)
```
```ruby
require 'signalwire/sdk'
@client = Signalwire::REST::Client.new 'YourProjectID', 'YourAuthToken', signalwire_space_url: "example.signalwire.com"
conferences = @client.conferences.list
conferences.each do |record|
puts record.sid
end
```